pascalabcnet/Debugger.Core/Src/Wrappers/MetaData/ParamProps.cs
Бондарев Иван e6e67c193c initial commit
2015-05-14 21:35:07 +02:00

25 lines
504 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 ParamProps
{
public uint Token;
public string Name;
public uint MethodToken;
public uint ParameterSequence;
public uint Flags;
}
}
#pragma warning restore 1591