Implement IEquitable on TypeKey, for a very tiny speed boost

This commit is contained in:
Antony Male 2014-03-23 15:08:26 +00:00
parent 364111afbc
commit 316d9a5e49
2 changed files with 8 additions and 4 deletions

View File

@ -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
{

View File

@ -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;
}
}