FieldInfo.FieldType Property gets the type of this field object. : FieldInfo « Reflection « VB.Net






FieldInfo.FieldType Property gets the type of this field object.

 

Imports System
Imports System.Reflection

Public Class Myfield
    Private SomeField As String = "private field"
End Class 

Public Class Myfieldinfo
    Public Shared Function Main() As Integer
        Dim Myfield As New Myfield()
        Dim MyType As Type = GetType(Myfield)
        Dim Myfieldinfo As FieldInfo = MyType.GetField("SomeField",BindingFlags.Instance Or BindingFlags.NonPublic)
        Console.WriteLine("{0}.{1} - {2};", MyType.FullName,Myfieldinfo.Name, Myfieldinfo.GetValue(Myfield))
        Console.WriteLine("FieldType = {0}", Myfieldinfo.FieldType)
        Return 0
    End Function
End Class 

   
  








Related examples in the same category

1.FieldInfo Class represents the attributes of a field and provides access to field metadata.
2.FieldInfo.Attributes Property gets the attributes associated with this field.
3.FieldInfo.FieldHandle Property gets a RuntimeFieldHandle
4.FieldInfo.GetFieldFromHandle gets a FieldInfo for the field represented by the specified handle.
5.FieldInfo.GetFieldFromHandle
6.FieldInfo.GetValue Method returns the value of a field supported by a given object.
7.FieldInfo Get Value
8.FieldInfo.IsAssembly
9.FieldInfo.IsInitOnly Property tells whether the field can only be set in the body of the constructor.
10.FieldInfo.IsNotSerialized
11.FieldInfo.IsPinvokeImpl
12.FieldInfo.IsPrivate
13.FieldInfo.IsPublic
14.FieldInfo.IsSpecialName tells whether the SpecialName attribute is set in the FieldAttributes enumerator.
15.FieldInfo.IsStatic
16.FieldInfo.MemberType
17.FieldInfo.SetValue sets the value of the field supported by the given object.