Mercurial > pub > bltoolkit
view Source/Reflection/Extension/ExtensionList.cs @ 5:f7d63a092920
Исправлено условие Where в тех случаях, когда репозитарий не является генериком
author | cin |
---|---|
date | Tue, 10 Mar 2015 16:02:11 +0300 |
parents | f990fcb411a9 |
children |
line wrap: on
line source
using System; using System.Collections.Generic; namespace BLToolkit.Reflection.Extension { public class ExtensionList : Dictionary<string,TypeExtension> { public new TypeExtension this[string typeName] { get { TypeExtension value; lock (this) return TryGetValue(typeName, out value) ? value : TypeExtension.Null; } } public TypeExtension this[Type type] { get { lock (this) foreach (var ext in Values) if (ext.Name == type.Name || ext.Name == type.FullName) return ext; if (type.IsGenericType && type.GetGenericTypeDefinition() == typeof(Nullable<>)) return this[Nullable.GetUnderlyingType(type)]; return TypeExtension.Null; } } public void Add(TypeExtension typeInfo) { lock (this) Add(typeInfo.Name, typeInfo); } } }