mirror of https://github.com/AMT-Cheif/Stylet.git
Implement IEquitable on TypeKey, for a very tiny speed boost
This commit is contained in:
parent
364111afbc
commit
316d9a5e49
|
@ -186,7 +186,7 @@ namespace StyletIoC
|
|||
if (this.serviceType.IsGenericTypeDefinition)
|
||||
{
|
||||
var unboundGeneric = new UnboundGeneric(implementationType, container, this.isSingleton);
|
||||
container.AddUnboundGeneric(new TypeKey(serviceType, Key), unboundGeneric);
|
||||
container.AddUnboundGeneric(new TypeKey(serviceType, this.Key), unboundGeneric);
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
|
@ -529,7 +529,7 @@ namespace StyletIoC
|
|||
}
|
||||
}
|
||||
|
||||
internal class TypeKey
|
||||
internal class TypeKey : IEquatable<TypeKey>
|
||||
{
|
||||
public readonly Type Type;
|
||||
public readonly string Key;
|
||||
|
@ -551,8 +551,12 @@ namespace StyletIoC
|
|||
{
|
||||
if (!(obj is TypeKey))
|
||||
return false;
|
||||
var other = (TypeKey)obj;
|
||||
return other.Type == this.Type && other.Key == this.Key;
|
||||
return this.Equals((TypeKey)obj);
|
||||
}
|
||||
|
||||
public bool Equals(TypeKey other)
|
||||
{
|
||||
return this.Type == other.Type && this.Key == other.Key;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue