이 글에서는 주로 C#공용 애플리케이션함수를 소개하고, C#에서 흔히 사용하는 시간, URL, HTML, 리플렉션, 십진수 연산 및 기타 관련 기능을 다음과 같은 형태로 요약 분석합니다. 친구들은
을 참조할 수 있습니다. 이 문서에는 C#의 일반적인 응용 프로그램 기능이 예제로 요약되어 있습니다. 참고할 수 있도록 모든 사람과 공유하세요. 자세한 내용은 다음과 같습니다.
1. 페이지에 CS 코드 작성(코드 포함)
<%@ Import Namespace="System" %> <%@ Import Namespace="System.Collections.Generic" %> <Script runat="server"> public int userId = 0; protected void Page_Load(object sender, EventArgs e) { userId =Convert.ToInt32(Request.QueryString["UserID"]); Response.Write(userId); } </Script> <% if (userId > 0){ msg = "欢迎登录!"; } else { msg = "未找到用户"; } %> <%= this.msg %>
2. 시간 간격 가져오기
/// <summary> /// 获取时间间隔(模拟微博发布文章的时间间隔) /// </summary> /// <param name="date"></param> /// <returns></returns> public string GetDateStr(DateTime date) { if (date < DateTime.Now) { TimeSpan ts = DateTime.Now - date; if (ts.TotalHours < 1 && ts.TotalMinutes < 1) { return "1分钟前"; } else if (ts.TotalHours < 1 && ts.TotalMinutes > 0) { return Convert.ToInt32(ts.TotalMinutes) + "分钟前"; } else if (ts.TotalHours < 4) { return Convert.ToInt32(ts.TotalHours) + "小时前"; } else if (DateTime.Now.Date == date.Date) { return date.ToString("HH:mm"); } else { return date.ToString("yyyy-MM-dd"); } } return date.ToString("yyyy-MM-dd"); }
3.
/// <summary> /// 遍历Url中的参数列表 /// </summary> /// <returns>如:(?userId=43&userType=2)</returns> public string GetUrlParam() { string urlParam = ""; if (Request.QueryString.Count > 0) { urlParam = "?"; NameValueCollection keyVals = Request.QueryString; foreach (string key in keyVals.Keys) { urlParam += key + "=" + keyVals[key] + "&"; } urlParam = urlParam.Substring(0, urlParam.LastIndexOf('&')); } return urlParam; }
의 URL 매개변수 목록 4. 텍스트 HTML 코드 지우기
using System.Text.RegularExpressions; /// <summary> /// 清除文本HTML码 /// </summary> public string RemoveHtmlTag(string htmlStr) { if (string.IsNullOrEmpty(htmlStr)) return string.Empty; return Regex.Replace(htmlStr, @"<[^>]*>", ""); }
5. 리플렉션은 클래스 이름
using System.Reflection; /// <summary> /// 反射 通过类名创建类实例 /// </summary> public void ReflecTest() { Object objClass = Assembly.GetExecutingAssembly().CreateInstance("MyStudy.BLL.BookInfoBLL"); //参数:类的完全限定名,无需类的后缀名 if (objClass != null) { BookInfoBLL bll = (BookInfoBLL)objClass; } }
/// <summary> /// 货币 /// </summary> /// <param name="obj"></param> /// <returns></returns> public static string ToMoney(object obj) { return String.Format("{0:C}", obj); }7. 소수점 이하 자릿수
//1.小数点位数 string str1 = String.Format("{0:F1}", 56789); //result: 56789.0 string str2 = String.Format("{0:F2}", 56789); //result: 56789.00 string str3 = String.Format("{0:N1}", 56789); //result: 56,789.0 string str4 = String.Format("{0:N2}", 56789); //result: 56,789.00 string str5 = String.Format("{0:N3}", 56789); //result: 56,789.000 string str6 = (56789 / 100.0).ToString("#.##"); //result: 567.89 string str7 = (56789 / 100).ToString("#.##"); //result: 567 //2.保留N位,四舍五入 . decimal d= decimal.Round(decimal.Parse("0.55555"),2); //3.保留N位四舍五入 Math.Round(0.55555, 2);8. TryGetValue를 사용하여 사전 값을 얻는 성능 향상TryGetValue를 사용하여 많은 수의 값을 가져올 때 ContainsKey입니다.
아아아아
위 내용은 일반적인 C# 응용 프로그램 기능의 예에 대한 자세한 설명의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!