RaUI/Source/ryControls/Sheng.Winform.Controls/Kernal/FastReflection/IFastReflectionPool.cs

24 lines
577 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Sheng.Winform.Controls.Kernal
{
/// <summary>
///
/// </summary>
/// <typeparam name="TKeyType"></typeparam>
/// <typeparam name="TAccessor"></typeparam>
public interface IFastReflectionPool<TKeyType, TAccessor>
{
/// <summary>
///
/// </summary>
/// <param name="type"></param>
/// <param name="key"></param>
/// <returns></returns>
TAccessor Get(Type type, TKeyType key);
}
}