public EventReference() { Reference = new VariableReference(); EventName = Names.UnknownEvent; }
public MethodReference() { Reference = new VariableReference(); MethodName = Names.UnknownMethod; }
public PropertyReference() { Reference = new VariableReference(); PropertyName = Names.UnknownProperty; }
private bool Equals(VariableReference other) { return(Equals(Identifier, other.Identifier)); }
public FieldReference() { Reference = new VariableReference(); FieldName = Names.UnknownField; }