Method CIReplace
CIReplace(String, String, String)
Replaces all instances of a substring in a given string with another using a case insensitve, current culture based comparisoon.
Declaration
public static string CIReplace(this string value, string searchValue, string newValue)
Parameters
| Type | Name | Description | 
|---|---|---|
| System.String | value | The value to replace the substring in.  | 
    
| System.String | searchValue | The substring to be replaced.  | 
    
| System.String | newValue | The new substring to use.  | 
    
Returns
| Type | Description | 
|---|---|
| System.String | A System.String containing the replaced parts.  | 
    
Exceptions
| Type | Condition | 
|---|---|
| System.ArgumentNullException | Thrown if   |