大约有 2,000 项符合查询结果(耗时:0.0080秒) [XML]

https://bbs.tsingfun.com/thread-574-1-1.html 

C# 多线程、并行处理全攻略(持续更新) - .NET(C#) - 清泛IT论坛,有思想、有深度

一、多线程(Thread): using System.Threading; ... Thread t = new Thread(new ThreadStart(delegate {         Proxy(delegate         {                 button3.Enabled = false;   ...
https://bbs.tsingfun.com/thread-908-1-1.html 

.NET 混淆工具Xenocode Postbuild - .NET(C#) - 清泛IT论坛,有思想、有深度

由于.NET反编译度极高,不作处理的exe或dll经过反编译代码可读性很高,这样非常容易暴露软件的逻辑及一些重要的算法等,因此我们发布.net程序的时候有必要对其进行混淆。或混淆函数变量、或加密数据等,混淆后的代码反编...
https://bbs.tsingfun.com/thread-640-1-1.html 

无法将类型“System.Collections.Generic.List<string>”隐式转换为...

List<string> list = new List<string>(); ......... ArrayList al = new ArrayList(); al.AddRange(list);复制代码如果单纯转换为对象数组,直接调用 list.ToArray() 方法。
https://bbs.tsingfun.com/thread-617-1-1.html 

Linq 多字段排序,二次排序 - .NET(C#) - 清泛IT论坛,有思想、有深度

Linq:ordered = source.OrderByDescending( t => t.f1 ).ThenBy( t => t.f2 ); 类似SQL:select * from t1 order by f1 desc ,f2 asc 这种写法里 OrderBy、ThenBy 是升序的,OrderByDescending、ThenByDescending 是降序的。
https://bbs.tsingfun.com/thread-577-1-1.html 

C# HashCode及Equals - .NET(C#) - 清泛IT论坛,有思想、有深度

同一Domain下: Equals为true则HashCode一定相等; HashCode相等则Equals不一定为true; Equals为false也可能HashCode相等(这种情况称之为Hash碰撞)。
https://bbs.tsingfun.com/thread-502-1-1.html 

c#操作xml读取xml经过排序后再返回xml数据 - .NET(C#) - 清泛IT论坛,有思想、有深度

XmlDocument doc = new XmlDocument(); doc.Load("c:\\config.xml"); XmlNodeList list = doc.SelectNodes("/configuration/item"); List<XmlNode> arrNode = new List<XmlNode>(); foreach (XmlNode node in list) {     arrNode.Add(node); } // 关键:使用匿名方法...
https://bbs.tsingfun.com/thread-481-1-1.html 

PDO MySQL扩展模块 检测通不过? - PHP - 清泛IT论坛,有思想、有深度

php.in中下面两行已经放开注释: extension=pdo.so extension=pdo_mysql.so PDO检测仍然通不过。 终极解决方案: php编译时加上如下参数,重新编译安装php: --with-pdo-mysql php编译安装完整参数请参见:http://www.tsingfun.com/html/2015/env_0826...
https://bbs.tsingfun.com/thread-839-1-1.html 

LOGFONT 和 CFont 区别 - VC/MFC - 清泛IT论坛,有思想、有深度

LOGFONT  和  CFont 本质上是相同的,前者是存储字体相关数据的一个结构体,后者是封装LOGFONT的一个类,用于创建使用字体。 创建字体: CFont *f = new CFont;         f->CreateFont(13, // nHeight &nbsp...
https://bbs.tsingfun.com/thread-405-1-1.html 

PHP连接MySQL报错:Fatal error: Call to undefined function mysql_connec...

【问题描述】 PHP测试连接MySQL的程序如下: <?php $host='localhost'; $user_name='root'; $password='mysql'; $conn=mysql_connect($host,$user_name,$password); if (!$conn) {     die('数据库连接失败:'.mysql_error()); } echo '数据库连接成功!'; if (mysql_clos...
https://bbs.tsingfun.com/thread-313-1-1.html 

请问如何设置richtextbox的边框颜色? - .NET(C#) - 清泛IT论坛,有思想、有深度

添加一个panel,设置背景颜色,然后richtextbox设置为fill。