首页 > 其他 > 详细

计算机编码

时间:2021-09-13 10:14:04      阅读:22      评论:0      收藏:0      [点我收藏+]
       // static Regex reUnicodeChar = new Regex(@"[^\u0000-\u00ff]", RegexOptions.Compiled);
         // return reUnicodeChar.Replace(s, m => string.Format(@"\u{0:x4}", (short)m.Value[0]));
      
 


        protected void Page_Load(object sender, EventArgs e)
        {

            String st = "5.21";
            double n = 5.21;
            int.Parse(st);      //输出5 
           // int.Parse(n);     //报错



           // float a = 2.45f;

           // Response.Write( int.Parse(a.ToString() ));

           // Response.Write(HttpUtility.UrlDecode("\u53f3\u5bf9\u9f50"));

           // string a = Encode1("打开");
           // Response.Write(a);

           // var db = new DataClasses1DataContext(Helper.GetCon()); 
           // mould_order_list item = db.mould_order_lists.First(c => c.id == 5);



           //Type t = item.GetType(); 
           // System.Reflection.PropertyInfo[] properties = t.GetProperties();

            //foreach (System.Reflection.PropertyInfo s in properties)
            //{
            //    item.GetType().GetProperty(s.Name).GetValue(item, null);
            //}
               
        
        }

  

计算机编码

原文:https://www.cnblogs.com/mqingqing123/p/15258245.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!