// ==++== // // Copyright (c) Microsoft Corporation. All rights reserved. // // ==--== namespace System { // This value type is used for making classlib type safe. // // SECURITY : m_ptr cannot be set to anything other than null by untrusted // code. // // This corresponds to EE FieldDesc. //| public struct RuntimeFieldHandle { #if !DONT_DO_BARTOK private int value; #endif //| public IntPtr Value { get; } } }