C# में int.TryParse विधि का उपयोग करके, संख्या के एक स्ट्रिंग प्रतिनिधित्व को एक पूर्णांक में बदलें। यदि स्ट्रिंग को परिवर्तित नहीं किया जा सकता है, तो int.TryParse विधि झूठी यानी एक बूलियन मान लौटाती है।
मान लें कि आपके पास एक संख्या का एक स्ट्रिंग प्रतिनिधित्व है।
string myStr = "12";
अब इसे एक पूर्णांक में बदलने के लिए, int.TryParse() का उपयोग करें। यह परिवर्तित हो जाएगा और ट्रू वापस आ जाएगा।
int.TryParse(myStr, out a);
उदाहरण
using System.IO; using System; class Program { static void Main() { bool res; int a; string myStr = "12"; res = int.TryParse(myStr, out a); Console.WriteLine("String is a numeric representation: "+res); } }
आउटपुट
String is a numeric representation: True