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));
 }
 public bool IsEventNameUsed(string eventName) => existingEventNames.Exists(eventName);
 public bool IsPropertyNameUsed(string propName) => existingPropertyNames.Exists(propName);
 public bool IsMethodNameUsed(string methodName) => existingMethodNames.Exists(methodName);