摘要:
通过自定义扩展方法DistinctBy实现去重 方法的使用 1、针对ID,和Name进行Distinct var query = allProduct.DistinctBy(p => new { p.Id, p.Name }); 2、仅仅针对ID进行distinct: var query = all 阅读全文
摘要:
public static byte[] ObjectToBytes(object obj) { MemoryStream ms = new MemoryStream(); IFormatter fm = new BinaryFormatter(); fm.Serialize(ms, obj); ... 阅读全文
摘要:
C# Winform开发中使用了CefSharp,之前在VS2012中运行很正常,今天换了一台Windows XP 打开VS2010 运行时,发生异常:System.IO.FileNotFoundException;Coloud not load file or assembly ‘CefSharp 阅读全文