9 lines
222 B
C#
9 lines
222 B
C#
using System;
|
|
|
|
public static class CharExtensionMethods {
|
|
public static bool IsHighSurrogate(this Char c)
|
|
=> Char.IsHighSurrogate(c);
|
|
|
|
public static bool IsLowSurrogate(this Char c)
|
|
=> Char.IsLowSurrogate(c);
|
|
} |