摘要:
/// /// DateTimeHelper /// public static class DateTimeHelper { /// /// Unix时间起始时间 /// public static readonly DateTime StarTime = new DateTime(1970... 阅读全文
摘要:
using System; using System.IO; using System.Linq; using System.Runtime.Serialization; using System.Text; using System.Xml.Serialization; /// /// Xml序列化 /// public static class XmlSeri... 阅读全文
摘要:
/// /// 字典串帮忙类 /// public static class StringHelper { /// /// 以默认编码返回字符串所对应的字节数组 /// /// 字符串 /// 字节数组 public static byte[] GetBytes... 阅读全文
摘要:
public static class IntHelper { /// /// 转换为2进制字符串 /// /// /// public static string To2Base(this int num) { return Convert.... 阅读全文
摘要:
/// /// 从M进制转换为N进制 /// internal class MBase2NBase { /// /// M进制值字符串 /// private string MValue = "123"; /// /// 除法商 //... 阅读全文
摘要:
using System; using System.Collections; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace G2.Utils { /// /// 字典帮助类 /// ... 阅读全文