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