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

รับฟิลด์ของ Type ปัจจุบันใน C #


เพื่อให้ได้ฟิลด์ของประเภทปัจจุบัน รหัสจะเป็นดังนี้ -

ตัวอย่าง

using System;
using System.Reflection;
public class Demo {
   public static void Main() {
      Type type = typeof(System.String);
      FieldInfo [] fields = type.GetFields(BindingFlags.Static | BindingFlags.NonPublic);
      Console.WriteLine ("Following are the non-public fields=");
      foreach (FieldInfo myField in fields) {
         Console.WriteLine(myField.ToString());
      }
   }
}

ผลลัพธ์

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

Following are the non-public fields=
Int32 TrimHead
Int32 TrimTail
Int32 TrimBoth
Int32 charPtrAlignConst
Int32 alignConst

ตัวอย่าง

เรามาดูตัวอย่างกัน −

using System;
using System.Reflection;
public class Demo {
   public static void Main() {
      Type type = typeof(System.Char);
      FieldInfo [] fields = type.GetFields(BindingFlags.Static | BindingFlags.NonPublic);
      Console.WriteLine ("\nFollowing are the non-public fields=");
      foreach (FieldInfo myField in fields) {
         Console.WriteLine(myField.ToString());
      }
   }
}

ผลลัพธ์

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

Following are the non-public fields=
Byte[] categoryForLatin1
Int32 UNICODE_PLANE00_END
Int32 UNICODE_PLANE01_START
Int32 UNICODE_PLANE16_END
Int32 HIGH_SURROGATE_START
Int32 LOW_SURROGATE_END