摘要:
using System.Reflection; static void EnvironmentDemo() { var pis = typeof(Environment).GetProperties().OrderBy(x=>x.Name).ToList(); for(int i=0;i<pis. 阅读全文
摘要:
using System; using System.Collections.Generic; using System.Linq; using System.Threading; using System.Threading.Tasks; using System.Windows.Forms; n 阅读全文
摘要:
A finally block does not always xecute. The code in the try block could go into an infinite loop, the exception could rigger a “fail fast” (which take 阅读全文