随笔分类 - .net framework
摘要:https://msdn.microsoft.com/en-us/library/system.configuration.configurationsection(v=vs.110).aspx Remarks You use the ConfigurationSection class to im
阅读全文
摘要:获取中文的周几 http://stackoverflow.com/questions/6182402/c-sharp-cultures-localize-dayofweek
阅读全文
摘要:System.Environment.CurrentDirectory Application.StartupPath https://msdn.microsoft.com/en-us/library/system.windows.forms.application.startuppath(v=vs
阅读全文
摘要:https://msdn.microsoft.com/en-us/library/system.drawing.drawing2d.lineargradientbrush(v=vs.110).aspx 横向渐变 new Point(0, 10), new Point(200, 10), new Po
阅读全文
摘要:stackoverflow上的回答 http://stackoverflow.com/questions/2821035/c-sharp-get-start-date-and-last-date-based-on-current-date DevExpress的横轴,根据时间,自适应 https:/
阅读全文
摘要:DateTimeExtensions http://stackoverflow.com/questions/2136487/calculate-week-of-month-in-net/2136549#2136549 GetWeekOfYear https://msdn.microsoft.com/
阅读全文
摘要:https://msdn.microsoft.com/en-us/library/system.globalization.textinfo.totitlecase(v=vs.110).aspx Converts the specified string to title case (except
阅读全文
摘要:https://msdn.microsoft.com/en-us/library/8s9b9yaz(v=vs.110).aspx C:\Users\Administrator\.nuget\packages\squirrel.windows\1.4.4\tools C:\Users\Administ
阅读全文
摘要:How to get a user's client IP address in ASP.NET? Often you will want to know the IP address of someone visiting your website. While ASP.NET has sever
阅读全文
摘要:http://stackoverflow.com/questions/228532/difference-between-char-isdigit-and-char-isnumber-in-c-sharp Char.IsDigit() is a subset of Char.IsNumber().
阅读全文
摘要:Clears the DataSet of any data by removing all rows in all tables. 需要注意的是这个方法不会清空DataSet中的DataTable,仅仅是把所有DataTable中的DataRow给清除了 DataTable仍然会被保留 如果要连带
阅读全文
摘要:https://msdn.microsoft.com/en-us/library/system.xml.serialization.xmlserializer(v=vs.110).aspx Remarks Serializes and deserializes objects into and fr
阅读全文
摘要:第一个构造函数 Initializes a new instance of the ArraySegment<T> structure that delimits all the elements in the specified array. public ArraySegment( T[] ar
阅读全文
摘要:https://msdn.microsoft.com/en-us/library/k9hz8w9t(v=vs.110).aspx Compares two single-precision floating point numbers for equality and, if they are eq
阅读全文
摘要:移除成功 Truea.value=2 移除失败Falsea==null
阅读全文
摘要:https://msdn.microsoft.com/en-us/library/system.runtime.remoting.messaging.callcontext(v=vs.110).aspx Provides a set of properties that are carried wi
阅读全文
摘要:http://csharpindepth.com/Articles/General/Unicode.aspx Scope of this page This is a big topic. Don't expect this page to do more than scratch the surf
阅读全文
摘要:http://stackoverflow.com/questions/1389821/array-copy-vs-buffer-blockcopy Since the parameters to Buffer.BlockCopy are byte-based rather than index-ba
阅读全文
摘要:.NET Framework Client ProfileThe .NET Client Profile is a subset of the .NET Framework, which was provided with .NET Framework 4 and earlier versions ...
阅读全文
摘要:What is the difference between C# and .NET?In addition to what Andrew said, it is worth noting that:.NET isn't just alibrary, but also aruntimefor exe...
阅读全文