摘要: using System.Data.Linq;using System.Data.Linq.Mapping; namespace ConsoleApplication1388{ class Program { static void Main(string[] args) { string sour 阅读全文
posted @ 2016-10-06 14:34 FredGrit 阅读(324) 评论(0) 推荐(0) 编辑
摘要: LINQ to SQL will translate .NET methods in this manner: text.StartsWith(...) = LIKE ...% text.Contains(...) = LIKE %...% text.EndsWith(...) = LIKE %.. 阅读全文
posted @ 2016-10-06 11:56 FredGrit 阅读(380) 评论(0) 推荐(0) 编辑
摘要: using (AdventureWorks2012Entities db = new AdventureWorks2012Entities()) { int num = (from stu in db.Customer orderby stu.CustomerID select stu).ToLis 阅读全文
posted @ 2016-10-06 11:19 FredGrit 阅读(672) 评论(0) 推荐(0) 编辑
摘要: object[] vals = { 1, "Hello", true, "World", 9.1 }; IEnumerable<double> justStrings = vals.OfType<double>( ); foreach(var str in justStrings) { Consol 阅读全文
posted @ 2016-10-05 16:38 FredGrit 阅读(271) 评论(0) 推荐(0) 编辑
摘要: 转自, http://www.cnblogs.com/kingcat/archive/2012/07/11/2585943.html yield return 表示在迭代中下一个迭代时返回的数据,除此之外还有yield break, 其表示跳出迭代,为了理解二者的区别我们看下面的例子 class A 阅读全文
posted @ 2016-10-05 13:54 FredGrit 阅读(243) 评论(0) 推荐(0) 编辑
摘要: 1.abstract 可以修饰类和方法,修饰方法时只声明不实现; 2.继承实现abstract类必须通过override实现abstract声明的方法,而virtual方法可选择override(重写)实现; 3. 阅读全文
posted @ 2016-10-05 12:36 FredGrit 阅读(129) 评论(0) 推荐(0) 编辑
摘要: 1.abstract 可以修饰类和方法,修饰方法时只声明不实现; 2.继承实现abstract类必须通过override实现abstract声明的方法,而virtual方法可选择override(重写)实现; 3. 阅读全文
posted @ 2016-10-05 12:35 FredGrit 阅读(157) 评论(0) 推荐(0) 编辑
摘要: string sourcePath = @"D:\GL\20160826141915999999.txt"; for (int i = 0; i < 10; i++) { Guid guid = Guid.NewGuid(); string str = DateTime.Now.ToString(" 阅读全文
posted @ 2016-08-26 15:09 FredGrit 阅读(4883) 评论(0) 推荐(0) 编辑
摘要: 1取汉字汉语拼音首字母: private static string GetFirstLetterOfChineseString(string CnChar) { long iCnChar; byte[] ZW = System.Text.Encoding.Default.GetBytes(CnCh 阅读全文
posted @ 2016-08-23 14:29 FredGrit 阅读(1495) 评论(0) 推荐(0) 编辑
摘要: Task<string> task = Task.Factory.StartNew(() => "The world is very fair and everything depend on myself!"); Console.WriteLine(task.Result); Task<long> 阅读全文
posted @ 2016-08-17 23:07 FredGrit 阅读(149) 评论(0) 推荐(0) 编辑