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
EclipseMarketplace是个插件应用商店,很实用的一个功能。打开eclipse,help--EclipseMarketplaceClient就能找到有的eclipse中没有这个功能就需手动添加EclipseMarketplaceClient。help--installnewsoftwar...
分类:
系统相关 时间:
2014-05-19 10:51:54
阅读次数:
416
F键类F2显示详细信息F3跳到声明或定义的地方Ctrl
+键类Ctrl+1快速修复(最经典的快捷键,就不用多说了)Ctrl+D删除当前行Ctrl+E快速显示当前Editer的下拉列表(如果当前页面没有显示的用黑体表示)Ctrl+T快速显示当前类的继承结构Ctrl+O快速显示OutLineCtrl+F...
分类:
系统相关 时间:
2014-05-19 10:41:33
阅读次数:
389
问题描述,以前做的程序迁移到vs2013后出现500.22问题。HTTP 错误 500.22
- Internal Server Error 检测到在集成的托管管道模式下不适用的 ASP.NET 设置。最可能的原因: 此应用程序在
system.web/httpModules 节中定义配置。可尝试的...
分类:
其他好文 时间:
2014-05-19 10:38:58
阅读次数:
276
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
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
1、当有大量数据需要计算、显示在界面或者调用sleep函数时,容易导致界面卡死,可以采用多线程加委托的方法解决using
System;using System.Collections.Generic;using System.ComponentModel;using
System.Data;usi...
分类:
编程语言 时间:
2014-05-19 09:47:53
阅读次数:
340
1.在Eclipse中新建Java工程2.引入JDBC库(在bulid path
的extenrnal里)3.1)导入sql包(import java.sql.*)2)加载(注册)mysql
jdbc驱动程序Class.forName("com.mysql.jdbc.Driver");3)连接数据库...
分类:
数据库 时间:
2014-05-19 09:14:50
阅读次数:
341
[System.Runtime.InteropServices.DllImport("winmm.DLL", EntryPoint = "PlaySound",
SetLastError = true)] private static extern bool PlaySound(string sz....
一、引入类型与值类型简介
值类型:直接存放于栈中,取的时候是直接取得值。值类型继承自System.ValueType。(自定义对象)
引用类型:存在于托管堆中,取的时候是从栈取该对象的地址,然后用这个地址去托管堆中取值。引用类型继承自System.Object。(int,bool,struct).....
分类:
其他好文 时间:
2014-05-17 17:58:48
阅读次数:
181