Determines whether the specified string is enclosed in
the specified character.
Namespace:
Sfs2X.WebSocketSharp
Assembly:
SmartFox2X (in SmartFox2X.dll) Version: 1.8.0.0 (1.8.0)
Syntax public static bool IsEnclosedIn(
this string value,
char c
)
Parameters
- value
- Type: SystemString
A String to test.
- c
- Type: SystemChar
A Char to find.
Return Value
Type:
Booleantrue if
value is enclosed in
c; otherwise,
false.
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