Exemplo n.º 1
0
 protected PropertyBlockEntry(int line, PropertyBlockEntryType type, string name = null)
 {
     m_line         = line;
     Name           = name;
     BlockEntryType = type;
 }
Exemplo n.º 2
0
 public bool Is(string name, PropertyBlockEntryType type)
 {
     return(m_name == name && BlockEntryType == type);
 }