C# में Char.IsSurrogate() विधि इंगित करती है कि निर्दिष्ट वर्ण में एक सरोगेट कोड इकाई है या नहीं।
सिंटैक्स
निम्नलिखित वाक्य रचना है -
public static bool IsSurrogate (string str, int index);
ऊपर, पैरामीटर str स्ट्रिंग है, जबकि अनुक्रमणिका str में मूल्यांकन करने के लिए वर्ण की स्थिति है।
उदाहरण
आइए अब हम Char.IsSurrogate() पद्धति को लागू करने के लिए एक उदाहरण देखें -
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!