Click or drag to resize
StringExtensionsReplaceIgnoreCase Method
Replaces all the values in a string, regardless of their case with the new value

Namespace: Entelect.Extensions
Assembly: Entelect (in Entelect.dll) Version: 0.0.79
Syntax
C#
public static string ReplaceIgnoreCase(
	this string input,
	string oldValue,
	string newValue
)

Parameters

input
Type: SystemString
The string to search in
oldValue
Type: SystemString
The value to replace, not case sensitive
newValue
Type: SystemString
The replacement value

Return Value

Type: String

[Missing <returns> documentation for "M:Entelect.Extensions.StringExtensions.ReplaceIgnoreCase(System.String,System.String,System.String)"]

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type String. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
See Also