C-Sharp | Java | Python | Swift | GO | WPF | Ruby | Scala | F# | JavaScript | SQL | PHP | Angular | HTML
C# String IsNormalized()The C# IsNormalized() method is used to check whether the string is in Unicode normalization form. It returns boolean value. Signature public bool IsNormalized() public bool IsNormalized(NormalizationForm) Parameters It does not take any parameter. Return It returns boolean. C# String IsNormalized() Method Exampleusing System; using System.Text; public class StringExample { public static void Main(string[] args) { string s1 = "Hello C#"; bool b1 = s1.IsNormalized(); Console.WriteLine(s1); Console.WriteLine(b1); } } Output: Hello C# True
Next TopicC# String Normalize()
|