यह जांचने के लिए कि निर्दिष्ट वर्ण में एक सरोगेट कोड है या नहीं, कोड इस प्रकार है -
उदाहरण
using System; public class Demo { public static void Main() { string str = new String(new char[] { 'k', 'm', 'g', 't', '\uD800' }); bool res = Char.IsSurrogate(str, 4); if (res) Console.WriteLine("Contains Surrogate value!"); else Console.WriteLine("Does not contain Surrogate value!"); } }
आउटपुट
यह निम्नलिखित आउटपुट उत्पन्न करेगा -
Contains Surrogate value!
उदाहरण
आइए एक और उदाहरण देखें -
using System; public class Demo { public static void Main() { string str = new String(new char[] { 'k', 'm', 'g', 't', 'w' }); bool res = Char.IsSurrogate(str, 4); if (res) Console.WriteLine("Contains Surrogate value!"); else Console.WriteLine("Does not contain Surrogate value!"); } }
आउटपुट
यह निम्नलिखित आउटपुट उत्पन्न करेगा -
Does not contain Surrogate value!