摘要:
private void button1_Click(object sender, EventArgs e) { Focus(); string a=txtType.Text; // Type type = typeof(System.Int32); Type t = Type.GetType(a); MethodInfo[]menthods= t.GetMethods(); foreach (MethodInfo method in menthods... 阅读全文
摘要:
在进行算术运算时,可以使用checked关键字有效处理溢出错误,使用checked关键字可能对程序的性能会有一点点的影响,这是一种以牺牲性能换取健康的做法。 1 private void button1_Click(object sender, RoutedEventArgs e) 2 { 3 byte bt_First, bt_Second; 4 if (byte.TryParse(txtNum1.Text, out bt_First) && byte.TryParse(txtNum2.Text, out bt_S... 阅读全文
摘要:
在进行移位运算时,当数值的二进制数每次向左移1位就相当于乘以2,当数值每次向右移一位就相当于除以2 private void button1_Click(object sender, EventArgs e) { try { char chr=txtNumIn.Text[0]; Encoding gb=Encoding.GetEncoding("gb2312"); byte[]gb2312_Result=gb.GetBytes(new... 阅读全文
摘要:
加密是指通过某种特殊的方法,更改已有信息的内容,是的未授权的用户即使得到了加密的信息,如果没有正确的解密算法,那么也无法得到信息的内容。方法一: //须添加对System.Web的引用 using System.Web.Security; ... /// /// SHA1加密字符串 /// /// 源字符串 /// 加密后的字符串 public string SHA1(string source) { return FormsAuthentication.HashPasswor... 阅读全文