10 2019 档案
摘要:类 public class A { /// <summary> /// 字段名称 /// </summary> public string Name { get; set; } } 获取值 A model= new A(){Name="ABC"}; string nameOfProperty =
阅读全文
摘要:20个使用WebGL和Three.js实现的网页场景 https://www.open-open.com/news/view/9d8136 20个使用WebGL和Three.js实现的网页场景 http://www.chinaz.com/design/2013/1008/320641.shtml 2
阅读全文
摘要:关于C# Dockpanel的一些入门的基本操作 原文链接:https://blog.csdn.net/Lc1996Jm/article/details/51881064 一、引用: 1.建立一个WinForm工程,默认生成了一个WinForm窗体Form1(此处默认为主窗体)。 2.引用—>添加引
阅读全文
摘要:原文链接:https://github.com/cefsharp/CefSharp/wiki/CefSharp中文帮助文档#a1_1 CefSharp中文帮助文档 目录 基础知识 1.1 cefsharp设置默认语言 1.2 cefSharp 服务器运行要求 1.3 cefsharp设置网页接受语言
阅读全文
摘要:反射替换工厂模式switch--case 原代码: public static IMonitorDeviceManager GetDeviceManager(string flag) { try { switch (flag) { case "1":return new DBManager();br
阅读全文
摘要:Close():关闭BinaryReader对象; Read():从指定流读取数据,并将指针迁移,指向下一个字符。 ReadDecimal():从指定流读取一个十进制数值,并将在流中的位置向前移动16个字节。 ReadByte():从指定流读取一个字节值,并将在流中的位置向前移动一个字节。 Read
阅读全文
摘要:JObject staff = new JObject(); staff.Add(new JProperty("Name", "Jack")); staff.Add(new JProperty("Age", 33)); staff.Add(new JProperty("Department", "P
阅读全文
摘要:原文链接:https://blog.csdn.net/wanlong360599336/article/details/9222459 浅析.NET中的Serialization 摘要 本文简要介绍了.NET中的序列化(Serialization)概念,以及在代码中实作Serialization的方
阅读全文