namespace BaiDu.Nhds.SvcProxy.Utils
{
public static class SyncHelper
{
public static List<T> GetSyncData<T>(string syncId) where T : Neusoft.Dawn.Core.Dto.BaseDto;
public static DateTime GetSyncDataTime<T>(string syncId);
public static List<T> GetSyncDataWithExpired<T>(string syncId, int seconds) where T : Neusoft.Dawn.Core.Dto.BaseDto;
public static List<T> GetSyncDataWithUpdate<T>(string syncId) where T : Neusoft.Dawn.Core.Dto.BaseDto;
}
}
where T : Neusoft.Dawn.Core.Dto.BaseDto
指定T的类型必须是Neusoft.Dawn.Core.Dto.BaseDto
// 等价于下面的写法:
public static List<Neusoft.Dawn.Core.Dto.BaseDto> GetSyncDataWithUpdate(string syncId)
想问一下 这是哪方面的知识点呢 我想系统的看一下