ExtensionsEscapeBackslashes Method |
Note: This API is now obsolete.
Takes a String and escapes any backslashes in it which are not followed by a valid escape character.
Namespace:
VDS.RDF
Assembly:
dotNetRDF (in dotNetRDF.dll) Version:
Syntax [ObsoleteAttribute("No longer necessary, do not use", true)]
public static string EscapeBackslashes(
this string value,
char[] cs
)
<ExtensionAttribute>
<ObsoleteAttribute("No longer necessary, do not use", true)>
Public Shared Function EscapeBackslashes (
value As String,
cs As Char()
) As String
Parameters
- value
- Type: SystemString
String value. - cs
- Type: SystemChar
Valid Escape Characters i.e. characters which may follow a backslash.
Return Value
Type:
String[Missing <returns> documentation for "M:VDS.RDF.Extensions.EscapeBackslashes(System.String,System.Char[])"]
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