代码改变世界

阅读排行榜

邮件发送1

2012-11-07 20:44 by hongjiumu, 247 阅读, 收藏,
摘要: 邮件发送1 阅读全文

TortoiseSVN Settings Subversion

2012-10-29 23:41 by hongjiumu, 247 阅读, 收藏,
摘要: TortoiseSVN Settings SubversionGlobal ignore pattern:*.o *.lo *.la *.al .libs *.so *.so.[0-9]* *.a *.pyc *.pyo *.rej *~ #*# .#* .*.swp .DS_Store release debug obj bin Bin Release Debug 阅读全文

Database Schema Create

2013-03-02 18:11 by hongjiumu, 246 阅读, 收藏,
摘要: create schema执行:IF not EXISTS(select * from sys.schemas where name = 'myschema')BEGINexec('CREATE SCHEMA [myschema] AUTHORIZATION [dbo]')END不同批次语句 阅读全文

Creating instance of type without default constructor in c#

2012-08-22 18:25 by hongjiumu, 242 阅读, 收藏,
摘要: Use this override of the CreateInstance method:public static object CreateInstance( Type type, params object[] args)creates an instance of the specified type using the constructor that best matches the specified parameters.See:http://msdn.microsoft.com/en-us/library/wcxyzt4d.aspx很喜欢这样的做法!值得记牢! 阅读全文

c#字定义异常处理类

2013-01-04 23:46 by hongjiumu, 236 阅读, 收藏,
摘要: public class DataLoaderException:Exception { private LogLevel _vLevel = LogLevel.None; private string _vsMessage = string.Empty; public LogLevel Level { get { return _vLevel; } } public string Message { get { return _vsMessa... 阅读全文
上一页 1 ··· 24 25 26 27 28 29 30 31 32 ··· 42 下一页