42 lines
796 B
C#
42 lines
796 B
C#
// <file>
|
|
// <copyright see="prj:///doc/copyright.txt"/>
|
|
// <license see="prj:///doc/license.txt"/>
|
|
// <owner name="David Srbecký" email="dsrbecky@gmail.com"/>
|
|
// <version>$Revision: 2185 $</version>
|
|
// </file>
|
|
|
|
#pragma warning disable 1591
|
|
|
|
using System;
|
|
|
|
namespace Debugger.Wrappers.MetaData
|
|
{
|
|
public struct FieldProps
|
|
{
|
|
public uint Token;
|
|
public string Name;
|
|
public uint ClassToken;
|
|
public uint Flags;
|
|
|
|
public bool IsStatic {
|
|
get {
|
|
return (Flags & (uint)ClassFieldAttribute.fdStatic) != 0;
|
|
}
|
|
}
|
|
|
|
public bool IsPublic {
|
|
get {
|
|
return (Flags & (uint)ClassFieldAttribute.fdPublic) != 0;
|
|
}
|
|
}
|
|
|
|
public bool IsLiteral {
|
|
get {
|
|
return (Flags & (uint)ClassFieldAttribute.fdLiteral) != 0;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
#pragma warning restore 1591
|