Get the fields of the current Type in C#


To get the fields of the current Type, the code is as follows −

Example

 Live Demo

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());
      }
   }
}

Output

This will produce the following output −

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

Example

Let us see another example −

 Live Demo

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 ("
Following are the non-public fields=");       foreach (FieldInfo myField in fields) {          Console.WriteLine(myField.ToString());       }    } }

Output

This will produce the following output −

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

Updated on: 10-Dec-2019

157 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements