Cosmos/source2/Debug/Cosmos.Debug.VSDebugEngine/AD7.Impl/DebugLocalInfo.cs
mterwoord_cp 81bffab044
2011-02-10 13:49:41 +00:00

27 lines
No EOL
425 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
namespace Cosmos.Debug.VSDebugEngine
{
public class DebugLocalInfo
{
public bool IsLocal
{
get;
set;
}
public string Name
{
get;
set;
}
public int Index
{
get;
set;
}
}
}