网站首页 站内搜索

搜索结果

查询Tags标签: 本质论,共有 2条记录
  • C#学习笔记(4):泛型

    以《C#6.0本质论(Essential C# 6.0)》为基本,参考《深入解析C#(C# in Depth, 4th Edition)》、《C#图解教程(Illustrated C# 7, 5th Edition)》。圆括号内是本质论书中位置、方括号是个人补充泛型的优点泛型促进了类型安全(P314) 避免了装箱和开箱,提高了性能、…

    2022/4/17 22:12:50 人评论 次浏览
  • 分享一个Byte KB MB GB 单位转换方法 从《C#本质论第三版》

    static public string FormatBytes(long bytes){string[] magnitudes =new string[] { "GB", "MB", "KB", "Bytes" };long max = (long)Math.Pow(1024, magnitudes.Length);return string.Format("{1:##.##} {0}",magn…

    2022/2/1 22:09:58 人评论 次浏览
扫一扫关注最新编程教程