• win10 uwp 商业游戏 1.2.1

    ...

    2018-06-17 23:22:27

  • ADO.NET基础学习 二(Command对象)

    ②command对象用来操作数据库。 (三个重要的方法:ExecuteNonQuery(),ExecuteReader(),ExecuteScalar()) ⑴以update(改数据)为例,用到 ExecuteNonQuery() 方法 (执行SQL语句,返回受影响行) private void button2_Click( object sender, EventArgs e) { SqlConnectio...

    2018-06-17 23:22:31

  • IEnumerable,ICollection,IList接口问题

    最近有一个疑问:IList已经继承了ICollectionT,而ICollectionT继承了IEnumerableT, IEnumerable,那为什么IList还要继承IEnumerableT, IEnumerable? 于是我自己写了接口测试:用dnSpy反编译看到,Test3接口继承了Test1,Test2。这就说明接口其实不支持跟类一样的继承...

    2018-06-17 23:22:03

  • Tree View控件(添加,移除,设置图标)

    添加 父节点,并为父节点添加子节点 private void button1_Click( object sender, EventArgs e) { TreeNode tn1 = treeView1.Nodes.Add( " 古诗 " ); // 为控件创建父节点 TreeNode Ctn1 = new TreeNode( " 夜月一帘幽梦 " ); // 创建子节点1 TreeNode Ctn2 = new Tree...

    2018-06-17 23:22:19

  • ASP.NET MVC 学习笔记-7.自定义配置信息(后续)

    自定义配置信息的高级应用 通过上篇博文对简单的自定义配置信息的学习,使得更加灵活的控制系统配置信息。实际项目中,这种配置的灵活度往往无法满足项目的灵活度和扩展性。 比如,一个配置信息有三部分组成,而每部分中有包括一些配置信息。仅仅使用简单的自定义配置...

    2018-06-17 23:22:15

  • C# 输出字符串到文本文件中

    写个博客记录下,方便以后使用: public class WriteHelper { public static void WriteFile( object data) { try { string path = $ @" D:\TokenLog\day{DateTime.Now:yyyy-MM-dd} " ; var filename = $ " TokenLog{DateTime.Now:yyyy-MM-dd HH}.txt " ; if (! Direct...

    2018-06-17 23:22:17

  • 事件管理

    using System; using System.Collections.Generic; namespace CustomUtils{ /// summary /// 事件管理器 /// /summary public class EventManager { private readonly static Dictionary string , ActionEventMessageArgs eventTask = new Dictionary string , ActionE...

    2018-06-17 23:22:12

  • ASP.NET MVC 学习笔记-7.自定义配置信息

    ASP.NET程序中的web.config文件中,在appSettings这个配置节中能够保存一些配置,比如, 1 appSettings 2 add key= " LogInfoProvider " value= " Cookie " / // 登录信息保存方式 3 /appSettings 但是这些配置都是单个字符串信息,在某些情况下,无法做到灵活配置。...

    2018-06-17 23:22:04

  • FastReport.Net

    using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Text;using System.Windows.Forms;using FastReport;using FastReport.Data;using FastReport.Editor;using FastReport.Design;usin...

    2018-06-17 23:21:59

  • c# 项目之间循环引用vs弹窗提醒

    circular dependencies in projects' graph ! Projects in cycle are:ProjectImp(Name:FrameWork.Entity,PlatformId:'.NETFramework,Version=v4.6') ProjectlImpl(Name :FrameWork.Interface, PlatformId: '.NET Framework,Versio=v4.6') 报这种错误就是循环引用的问题...

    2018-06-17 23:22:00

2