INNER CODE UNIT · C#
Property
ArcadeMakerSources/ArcadeMaker · src/ArcadeMaker.IDE/CodeChecker.cs:506
public class Property : ClassMember
{
public bool Readonly, Const, Abstract, Virtual;
public bool Get, Set;
public Value Value = null;
}
public class MethodParameter : CSItem
{
public string Name, Type;
public bool Ref, Out, HasDefaultValue;
public Value DefaultValue = null;
}
public class Value : CSItem
{
public string Type;
}