摘要:
... 阅读全文
摘要:
//获得设备虚拟标示符wp8public string GetWindowsLiveAnonymousID() { object anid = new object(); string anonymousUserId = ""; ... 阅读全文
摘要:
Stopwatch time = new Stopwatch(); byte[] target = new byte[size]; for (int j = 0; j < size; j++) target[j] = unchecke... 阅读全文
摘要:
<phone:PhoneApplicationPage.Resources> <Style x:Key="ButtonStyle1" TargetType="Button"> <Setter Property="Background" Value="Transparent"/> <Setter Pr 阅读全文
摘要:
抓包工具Fiddler的使用 Fiddler是一款免费且功能强大的数据包抓取软件.它通过代理的方式获取程序http通讯的数据.我们可以利用它来检测网页和服务器的交互情况.下面,我们以http://blog.cersp.com/index/1000176.jspx的网址列表的获取说明一下如何使Fidd 阅读全文
摘要:
http://msdn.microsoft.com/zh-cn/library/bb397924.aspx LINQ 查询操作中的类型关系 (C#) 使用一个人类发明快速检索的方法 // Northwnd inherits from System.Data.Linq.DataContext. Nor 阅读全文
摘要:
WebClient wc = new WebClient();var URI = new Uri("http://your_uri_goes_here");//If any encoding is needed.wc.Headers["Content-Type"] = "application/x-www-form-urlencoded";//Or any other encoding type.//If any key neededwc.Headers["KEY"] = "Your_Key_Goes_H 阅读全文
摘要:
DateTime.Now.ToShortTimeString()DateTime dt = DateTime.Now;dt.ToString();//2005-11-5 13:21:25dt.ToFileTime().ToString();//127756416859912816dt.ToFileT... 阅读全文
摘要:
Dispatcher.BeginInvoke(() => MessageBox.Show(String.Format("A push notification {0} error occurred. {1} ({2}) {3}", e.ErrorType, e.Message, e.ErrorCode, e.ErrorAdditionalData)) );用在其上创建了Dispatcher的线程的指定参数异步执行指定委托http://msdn.microsoft.com/zh-cn/l... 阅读全文