


Detailed explanation of examples of common C# application functions
This article mainly introduces C#common applicationsfunctions, and summarizes and analyzes C#'s commonly used time, URL, HTML, reflection, decimal operation and other related functions in the form of examples. Friends can refer to
The examples in this article summarize C# common application functions. Share it with everyone for your reference, the details are as follows:
1. Write CS code on the page (code embedded)
<%@ 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. Get time interval
/// <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. Traverse Url Parameter list in
/// <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; }
4. Clear text HTML code
using System.Text.RegularExpressions; /// <summary> /// 清除文本HTML码 /// </summary> public string RemoveHtmlTag(string htmlStr) { if (string.IsNullOrEmpty(htmlStr)) return string.Empty; return Regex.Replace(htmlStr, @"<[^>]*>", ""); }
5. Reflection to create class instance through class name
using System.Reflection; /// <summary> /// 反射 通过类名创建类实例 /// </summary> public void ReflecTest() { Object objClass = Assembly.GetExecutingAssembly().CreateInstance("MyStudy.BLL.BookInfoBLL"); //参数:类的完全限定名,无需类的后缀名 if (objClass != null) { BookInfoBLL bll = (BookInfoBLL)objClass; } }
6. CurrencyType conversion
/// <summary> /// 货币 /// </summary> /// <param name="obj"></param> /// <returns></returns> public static string ToMoney(object obj) { return String.Format("{0:C}", obj); }
7. Number of decimal points
//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. Use TryGetValue to improve the performance of obtaining dictionary values
Using TryGetValue doubles the performance of ContainsKey when obtaining a large number of values.
Dictionary<int, String> dic = new Dictionary<int, String>(); dic.Add(1,"张三"); dic.Add(2,"李四"); string name = ""; //错误写法,效率底 if (dic.ContainsKey(1)) { name = dic[1]; Console.WriteLine(name); } //正确写法,效率提高一倍 if (dic.TryGetValue(1, out name)) { Console.WriteLine(name); }
The above is the detailed content of Detailed explanation of examples of common C# application functions. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics











Guide to Active Directory with C#. Here we discuss the introduction and how Active Directory works in C# along with the syntax and example.

Guide to C# Serialization. Here we discuss the introduction, steps of C# serialization object, working, and example respectively.

Guide to Random Number Generator in C#. Here we discuss how Random Number Generator work, concept of pseudo-random and secure numbers.

Guide to C# Data Grid View. Here we discuss the examples of how a data grid view can be loaded and exported from the SQL database or an excel file.

The difference between multithreading and asynchronous is that multithreading executes multiple threads at the same time, while asynchronously performs operations without blocking the current thread. Multithreading is used for compute-intensive tasks, while asynchronously is used for user interaction. The advantage of multi-threading is to improve computing performance, while the advantage of asynchronous is to not block UI threads. Choosing multithreading or asynchronous depends on the nature of the task: Computation-intensive tasks use multithreading, tasks that interact with external resources and need to keep UI responsiveness use asynchronous.

Guide to Factorial in C#. Here we discuss the introduction to factorial in c# along with different examples and code implementation.

Guide to Patterns in C#. Here we discuss the introduction and top 3 types of Patterns in C# along with its examples and code implementation.

Guide to Prime Numbers in C#. Here we discuss the introduction and examples of prime numbers in c# along with code implementation.
