摘要:
public class Crc32 { public static uint ComputeChecksum(byte[] bytes) { uint[] table = new uint[256]; // Initialize CRC table. for (uint i = 0; i < 25 阅读全文
摘要:
public static void Mapper<T>(T tSource, T tDestination) where T : class { //获得所有property的信息 PropertyInfo[] properties = tSource.GetType().GetPropertie 阅读全文