public void NotifyProperty(string qualifiedPropertyName, NpcInjectionPropertyInfo info) { var lastDotIndex = qualifiedPropertyName.LastIndexOf(':'); var propertyName = qualifiedPropertyName.Substring(lastDotIndex + 1); PropertyInfos.Add(Tuple.Create(propertyName, info)); }
public void NotifyProperty(string qualifiedPropertyName, NpcInjectionPropertyInfo info) { Console.WriteLine("Property {0}: {1}", qualifiedPropertyName, info); }