예제 #1
0
파일: Key.cs 프로젝트: rmacfie/MotherBrain
 protected bool Equals(Key other)
 {
     return Equals(Type, other.Type) && string.Equals(Name, other.Name);
 }
예제 #2
0
 public object GetOrAdd(Key key, Func<Key, object> factory)
 {
     return instances.GetOrAdd(key, factory);
 }