ToString () विधि एक स्ट्रिंग लौटाती है जो वर्तमान वस्तु का प्रतिनिधित्व करती है।
नीचे दिए गए उदाहरण में, हमने ToString () विधि का उपयोग किसी अन्य Array वर्ग विधि के साथ किया है।
arr.GetLowerBound(0).ToString()
उदाहरण
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace lower { class Program { static void Main(string[] args) { Array arr = Array.CreateInstance(typeof(String), 3); arr.SetValue("One", 0); arr.SetValue("Two", 1); Console.WriteLine("Lower Bound {0}",arr.GetLowerBound(0).ToString()); Console.ReadLine(); } } }
आउटपुट
Lower Bound 0