码迷,mamicode.com
首页 > Windows程序 > 详细

C# 代码审核

时间:2017-10-20 13:40:58      阅读:195      评论:0      收藏:0      [点我收藏+]

标签:24*   审核   ble   nbsp   stream   memory   element   tab   ring   

 

           string xml = "<root><book>8899</book><age></age></root>";    

         XElement root = XElement.Parse(xml);           

    string strBook = root.Element("book").Value;           

    string strAge = root.Element("age").Value; //返回为"",而不是null

 

            DataTable dt = new DataTable();  

           dt.Columns.Add("aa");

           dt.Rows.Add(new object[]{DBNull.Value});  

           string aa = dt.Rows[0][0].ToString();//返回为"",而不是null

 

            byte[] buf = new byte[1024*1024];  

           MemoryStream m = new MemoryStream(); //测试出来,memoryStream会自动释放的   

          for (int i = 0; i < 1024; i++)        

     {             

      m.Write(buf, 0, buf.Length);    

         }

C# 代码审核

标签:24*   审核   ble   nbsp   stream   memory   element   tab   ring   

原文地址:http://www.cnblogs.com/movemoon/p/7698765.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!