Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> C#

CharEnumerator.ToString() วิธีการใน C #


CharEnumerator.ToString() วิธีการใน C # รับสตริงที่แสดงถึงวัตถุปัจจุบัน

ไวยากรณ์

ต่อไปนี้เป็นไวยากรณ์ -

public virtual string ToString();

ตัวอย่าง

ให้เราดูตัวอย่างการใช้วิธี CharEnumerator.ToString() -

using System;
public class Demo {
   public static void Main(){
      string strNum = "This is it!";
      CharEnumerator ch = strNum.GetEnumerator();
      Console.WriteLine("HashCode = "+ch.GetHashCode());
      Console.WriteLine("Get the Type = "+ch.GetType());
      Console.WriteLine("\nString representation = "+ch.ToString());
      while (ch.MoveNext())
         Console.Write(ch.Current + " ");
      ch.Reset();
      Console.WriteLine();
      while (ch.MoveNext())
         Console.Write(ch.Current);
   }
}

ผลลัพธ์

สิ่งนี้จะสร้างผลลัพธ์ต่อไปนี้ -

HashCode = 31020903
Get the Type = System.CharEnumerator
String representation = System.CharEnumerator
T h i s i s i t !
This is it!