码迷,mamicode.com
首页 >  
搜索关键字:A general system er    ( 53009个结果
svn签出单个文件
if (System.IO.Directory.Exists(System.IO.Path.GetDirectoryName(this.Asset.LocalPath)) && System.IO.Directory.GetFiles(System.IO.Path.GetDirectoryName(...
分类:其他好文   时间:2014-05-19 11:04:02    阅读次数:217
vs2013内置IISExpress相关问题
问题描述,以前做的程序迁移到vs2013后出现500.22问题。HTTP 错误 500.22 - Internal Server Error 检测到在集成的托管管道模式下不适用的 ASP.NET 设置。最可能的原因: 此应用程序在 system.web/httpModules 节中定义配置。可尝试的...
分类:其他好文   时间:2014-05-19 10:38:58    阅读次数:276
c#学习5,静态字段,静态函数,静态类
using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace 静态成员{ class Program { static void Main(string...
分类:其他好文   时间:2014-05-19 10:38:16    阅读次数:263
sssssss
private void C_txt(string str){ string strname = "D:\\" + System.DateTime.Now.ToString("yyyymmddhhmmss") + ".txt"; StreamWriter swWordChange = n...
分类:其他好文   时间:2014-05-19 09:53:50    阅读次数:188
WinForm多线程+委托防止界面卡死
1、当有大量数据需要计算、显示在界面或者调用sleep函数时,容易导致界面卡死,可以采用多线程加委托的方法解决using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;usi...
分类:编程语言   时间:2014-05-19 09:47:53    阅读次数:340
C#播放音效(web/winform)
[System.Runtime.InteropServices.DllImport("winmm.DLL", EntryPoint = "PlaySound", SetLastError = true)] private static extern bool PlaySound(string sz....
分类:Windows程序   时间:2014-05-19 09:01:59    阅读次数:362
TCP
在做性能测试测试时候,如果被测试的系统页面很简单,并且性能很好,这样会导致压力机得tcp链接数不够而导致如下错误:HKEY_LOCAL_MACHINE\System\CurrentControlSet\Services\tcpip\Parameters\TcpTimedWaitDelay to 30...
分类:其他好文   时间:2014-05-19 08:55:54    阅读次数:322
Mac系统打开命令行终端及查看操作系统版本号的方法
Mac系统打开命令行终端的方法: 应用程序 --> 实用工具 --> 终端Mac系统终端查看操作系统版本号的方法:输入:#more /System/Library/CoreServices/SystemVersion.plist.plist ProductBuildVersion ...
分类:其他好文   时间:2014-05-19 08:44:27    阅读次数:254
Guid.NewGuid()
Guid.NewGuid()System.Guid.NewGuid().ToString()全球唯一标识符 (GUID) 是一个字母数字标识符,用于指示产品的唯一性安装。在许多流行软件应用程序(例如 Web 浏览器和媒体播放器)中,都使用 GUID。GUID 的格式为“xxxxxxxx-xxxx-x...
分类:其他好文   时间:2014-05-19 07:41:16    阅读次数:257
引用类型与值类型在编码上的区别
一、引入类型与值类型简介 值类型:直接存放于栈中,取的时候是直接取得值。值类型继承自System.ValueType。(自定义对象) 引用类型:存在于托管堆中,取的时候是从栈取该对象的地址,然后用这个地址去托管堆中取值。引用类型继承自System.Object。(int,bool,struct).....
分类:其他好文   时间:2014-05-17 17:58:48    阅读次数:181
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!