System.Enum.ToHexString C# (CSharp) Метод

ToHexString() приватный Метод

private ToHexString ( ) : String
Результат String
        private String ToHexString()
        {
            Type eT = this.GetType();
            FieldInfo thisField = GetValueField(eT);

            // Retrieve the value from the field.
            return InternalFormattedHexString(((RtFieldInfo)thisField).InternalGetValue(this, false));
            //return  InternalFormattedHexString(((RuntimeFieldInfo)thisField).GetValue(this));
        }