public bool IsEventNameUsed(string eventName)
 {
     return(existingEventNames.Exists(eventName));
 }
 public bool IsPropertyNameUsed(string propName)
 {
     return(existingPropertyNames.Exists(propName));
 }
 public bool IsMethodNameUsed(string methodName)
 {
     return(existingMethodNames.Exists(methodName));
 }
Ejemplo n.º 4
0
 public bool IsEventNameUsed(string eventName) => existingEventNames.Exists(eventName);
Ejemplo n.º 5
0
 public bool IsPropertyNameUsed(string propName) => existingPropertyNames.Exists(propName);
Ejemplo n.º 6
0
 public bool IsMethodNameUsed(string methodName) => existingMethodNames.Exists(methodName);