11 2016 档案

摘要:Match match = Regex.Match("result=23&asdf=asdf", @"result=(\d+)&"); if (match.Success) { Console.WriteLine(match.Value); //result=23& Console.... 阅读全文
posted @ 2016-11-29 09:54 森林王子 阅读(200) 评论(0) 推荐(0)
摘要:using System; namespace ConsoleApp1 { public class Program { private delegate int Add(int a, int b); public static void Main(string[] args) { Add add1 = n... 阅读全文
posted @ 2016-11-29 08:43 森林王子 阅读(372) 评论(0) 推荐(0)
摘要:Severity Code Description Project File Line Suppression StateError This project references NuGet package(s) that are missing on this computer. Use NuG 阅读全文
posted @ 2016-11-20 11:42 森林王子 阅读(12855) 评论(0) 推荐(3)
摘要:1. 在windows server 2008下装SQL 2008出现 This SQL Server Setup media is not supported on a X64 system 使用虚拟光驱(DAEMON Tools Lite)安装即可。 2.安装步骤: 1.需要创建一个window 阅读全文
posted @ 2016-11-12 22:10 森林王子 阅读(1232) 评论(0) 推荐(0)
摘要:DateTime. ToString() 2016-11-03 13:27:54 ToBinary() -8587234560113423030 ToFileTime() 131226244741352778 ToFileTimeUtc() 131226244741352778 ToLocalTime() 2016-11-03 ... 阅读全文
posted @ 2016-11-03 13:29 森林王子 阅读(163) 评论(0) 推荐(0)