C#获取互联网时间

1 public static class TimeHelper 2 { 3 // 小端存储与大端存储的转换 4 private static uint swapEndian(ulong x) 5 { 6 return (uint)(((x & 0x000000ff) << 24) + 7
相关文章
相关标签/搜索