To check whether the Unicode character is a separator character, the code is as follows −
Example
using System;
public class Demo {
public static void Main(){
bool res;
char val = ',';
Console.WriteLine("Value = "+val);
res = Char.IsSeparator(val);
Console.WriteLine("Is the value a separator? = "+res);
}
}Output
This will produce the following output −
Value = , Is the value a separator? = False
Example
Let us now see another example −
using System;
public class Demo {
public static void Main(){
bool res;
char val = ' ';
Console.WriteLine("Value = "+val);
res = Char.IsSeparator(val);
Console.WriteLine("Is the value a separator? = "+res);
}
}Output
This will produce the following output −
Value = Is the value a separator? = True