• 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-23 23:58:51

  • c# 大批量用户访问时报错【PetaPoco】

    报错信息:There is already an open DataReader associated with this Connection which must be closed first 缓解的方案:在实例化database的时候利用线程独立实例化,每个线程一个单独的database实例 [ThreadStatic] private static Database _threadInstance = nu...

    2018-06-23 23:58:52

  • 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-23 23:58:51

  • 操作数据库出现InvalidOpertionException(内部连接致

    用DataTables时并发访问量较大,单个任务操作(获取数据)时间较长。连接数过多的时候就出现InvalidOpertionException错误。 知道哪里有问题那就好办了,对GetDataTable(string sql):DataTable方法用线程锁 lock() ,这样就不会出现上述问题。类型问题也可以这样解决。 代...

    2018-06-23 23:58:50

  • 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-23 23:58:49

  • 匿名对象解析

    class Program { static void Main(string[] args) { Listobject obj = new Listobject(); obj.Add(new { aa=1,bb=1}); obj.Add(new { aa = 1, bb = 2 }); var objs = obj.Select(t = t.Cast(new { aa = 0, bb = 0 })).ToList(); Console.ReadKey(); } } static class...

    2018-06-23 23:58:47

  • EF 延时加载与死锁

    第一种 #region 第一种延迟加载 用到的时候就会去查询数据。 // 用到的时候就会去查询数据。 // IQueryableUserInfo temp = from u in dbContext.UserInfo // // where u.UName.Contains("o") // // u.UName.StartsWith("D") // select u; //测试一 // foreach (var us...

    2018-06-23 23:58:46

  • 事件管理

    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-23 23:58:44

  • .net 公共基础类

    using WL.Infrastructure.Http;using System;using System.Collections.Generic;using System.IO;using System.Linq;using System.Text;using System.Text.RegularExpressions;using System.Web;using System.Drawing;using System.Drawing.Imaging;using System.Drawi...

    2018-06-23 23:58:43

  • 转:VB中的API详解

    在接下来的这篇文章中,我将向大家介绍.NET中的线程API,怎么样用C#创建线程,启动和停止线程,设置优先级和状态. 在.NET中编写的程序将被自动的分配一个线程.让我们来看看用C#编程语言创建线程并且继续学习线程的知识。我们都知道.NET的运行时环境的主线程由Main ()方法来...

    2018-06-23 23:58:39

2