CLRSharp.Field_Common_System.Field_Common_System C# (CSharp) Method

Field_Common_System() public method

public Field_Common_System ( ICLRSharp_Environment env, System field ) : System
env ICLRSharp_Environment
field System
return System
        public Field_Common_System(ICLRSharp_Environment env, System.Reflection.FieldInfo field)
        {
            info = field;

            FieldType = env.GetType(field.FieldType);
            DeclaringType = env.GetType(field.DeclaringType);
        }