RaUI/Source/ryControls/Sheng.Winform.Controls/Kernal/FastReflection/IFastReflectionPool.cs
鑫Intel c3d4ddf574 ### 2021-07-29更新
------
#### MyDbV4   V3.0.2107.2901
- *.[新增]新增支持计算文件MD5。
- *.[新增]部分DataProvider功能移植到DbExtension里,增加扩展性。
- *.[新增]UnixTimeToDateTime和JSTimeToDateTime新增支持long参数。
- *.[合并]合并RyWeb项目到MyDb里。

#### ryControlsV4    V3.0.2107.2901
  -  *.[改进]优化减少大量IDE警告和消息。
2021-07-29 17:09:32 +08:00

24 lines
577 B
C#

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