Cosmos/source/Indy.IL2CPU/DebugSymbol.cs
2008-03-23 19:37:39 +00:00

28 lines
No EOL
387 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Indy.IL2CPU {
public class DebugSymbol {
public string AssemblyFileName {
get;
set;
}
public int MethodMetaDataToken {
get;
set;
}
public int InstructionOffset {
get;
set;
}
public string LabelName {
get;
set;
}
}
}