08 2014 档案
摘要:--删除主键Declare @Pk varChar(100);Select @Pk=Name from sysobjects where Parent_Obj=OBJECT_ID('SwtoolsUpdateRecord') and xtype='PK';if @Pk is not nullexec...
阅读全文
摘要:罗列了一些用到的,各进制 以及 ASCII 间的转换,记录备忘一,先说说 2,8,10 ,16 各进制之间的转化System.Convert类中提供了较为全面的各种类型、数值之间的转换功能:几个比较常用的方法 1,Convert.ToInt32(string value, int fromBase...
阅读全文
摘要:using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace TestConsole{ class Program { static void Main...
阅读全文
摘要:要让一个Windows Form的TextBox显示多行文本就得把它的Multiline属性设置为true。 要让TextBox里面的文本换行大家往往会想到直接在要换行的地方加个转义的换行符"\n": [csharp] view plaincopyprint?this.textBoxDescript...
阅读全文