Click or drag to resize

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
)

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