摘要:
一定要把所有重要的网络账号中的关联手机号码解绑,很多平台的账号都不支持直接更换手机号,而是要先验证原手机号,再验证新手机号…… 阅读全文
摘要:
仿照某些网站post时,一定要看清楚该网站都post了哪些内容,不仅仅是用户名和密码,还会有很多杂七杂八的属性,代码中一定要带全属性去post 阅读全文
摘要:
ide visual studio2010 注意范围是用户 注意改完要save 阅读全文
摘要:
1 OpenFileDialog ofd = new OpenFileDialog(); 2 ofd.Filter = "(*.mp4)|*.mp4|(*.*)|*.*"; 3 ofd.RestoreDirectory = true; 4 if (ofd.ShowDialog() == DialogResult.OK... 阅读全文
摘要:
结果:2001,2000,2000 解读:object o 为装箱的操作,int j为拆箱操作。 将值类型转换为引用类型,需要进行装箱操作(boxing): 1、首先从托管堆中为新生成的引用对象分配内存。 2、然后将值类型的数据拷贝到刚刚分配的内存中。 3、返回托管堆中新分配对象的地址。 可以看出, 阅读全文
摘要:
一 1 int s_max = 0; 2 3 for (int i = 0; i < ar.Length; i++) 4 5 { 6 7 for (int j = 0; j <ar.Length; j++) 8 9 { 10 11 if (ar[j] > ar[i]) 12 13 { 14 15 i 阅读全文
摘要:
pagecount=(recordcount+pagesize-1)/pagesize 阅读全文
摘要:
(1)在SQL Server中,我们使用 select top N * from tablename来查询tablename表中前N条记录。 (2)在MySQL中,我们使用select * from tablename limit M,N来实现相似的效果,其中M表示从第M+1条记录开始,N表示返回N 阅读全文
摘要:
ToDatetime FromDatetime 阅读全文
摘要:
Newtonsoft.Json.dll 阅读全文
摘要:
1 class VidyoPortalUserServiceWithAuthentication : VidyoPortalUserService 2 { 3 String _username; 4 String _password; 5 public VidyoPortalUserServiceWithAuthenticati... 阅读全文
摘要:
String To bytes bytes To String 阅读全文
摘要:
Vidyo32.VidyoClientInEventLogin Login = new Vidyo32.VidyoClientInEventLogin(); Login.portalUri = this.tbxIP.Text.Trim(); //"http://kaunas.vidyo.scandihealth.net"; Login.user... 阅读全文
摘要:
Winform Wpf 阅读全文
摘要:
1 /// 该函数设置由不同线程产生的窗口的显示状态 2 /// 3 /// 窗口句柄 4 /// 指定窗口如何显示。查看允许值列表,请查阅ShowWlndow函数的说明部分 5 /// 如果函数原来可见,返回值为非零;如果函数原来被隐藏,返回值为零 6 [DllImport("User32.dll")... 阅读全文