C# 重载加号运算符计算两个对象的和public class ValidFloat{ private float value; private bool valid; public ValidFloat (float value, bool valid) { this.value = value; ……继续阅读 » 水墨上仙 4年前 (2021-03-14) 1515浏览 2759个赞
模仿老版本的windows上的夜空屏保代码using System;class set_cursor2{ int lastnum; private int RandomNumber(int min, int max){ Random random = new Random(); lastnum = random.Next(mi……继续阅读 » 水墨上仙 4年前 (2021-03-14) 2973浏览 2201个赞
C# 测试代码执行时间的两个方法DateTime startTime = DateTime.Now;Console.WriteLine ("Started: {0}", startTime); // Execute the task to be timedfor (int i=1; i < 100000; i++){}……继续阅读 » 水墨上仙 4年前 (2021-03-14) 1668浏览 778个赞
本代码片段演示了C#中如何实现IDispose接口,实现资源释放public class MyClass : IDisposable{ public void Dispose() { // release any resources here // when object is about to be garb……继续阅读 » 水墨上仙 4年前 (2021-03-14) 2984浏览 961个赞
C#获取 NetBIOS和 DNS计算机名static string GetLocalHostName (){ string netBiosName = System.Environment.MachineName; //return netBiosName; // Following method is deprecated……继续阅读 » 水墨上仙 4年前 (2021-03-14) 2173浏览 1546个赞
C#代码验证IP地址,包含格式和是否超过255的限制/// <summary> /// Check IP Address, will accept 0.0.0.0 as a valid IP /// </summary> /// <param name="strIP……继续阅读 » 水墨上仙 4年前 (2021-03-14) 2519浏览 577个赞
C# 从控制台读取数字try{ int number = Convert.ToInt32 (Console.ReadLine()); Console.WriteLine ("Number: " + number);}catch (FormatException e){ Console.WriteLine (……继续阅读 » 水墨上仙 4年前 (2021-03-14) 1891浏览 1045个赞
下面的c#代码片段显示产生随机数输出到控制台。RandomNumber函数的第一个参数为生成的随机数的最小值。第二个参数是最大值+ 1。using System; class Program{ private Random random = new Random(); private int RandomNumber (int ……继续阅读 » 水墨上仙 4年前 (2021-03-14) 2278浏览 1472个赞
根据给定的网页url地址返回域名/* ** Method 1 (using the build-in Uri-object)*/public static string ExtractDomainNameFromURL_Method1(string Url){ if (!Url.Contains("://")) ……继续阅读 » 水墨上仙 4年前 (2021-03-14) 1974浏览 2765个赞
下面的c#代码片段使用不同的格式显示日期和时间。using C = System.Console; ...static void Main() { DateTime dateTime = DateTime.Now; C.WriteLine ("d = {0:d}", dateTime ); // mm/dd/yyy……继续阅读 » 水墨上仙 4年前 (2021-03-14) 1708浏览 1813个赞
下面的c#代码片段演示了各种字符串的方法和属性。using System; class StringMethods{ static void Main() { char[] characterArray; int position; string result, string1; s……继续阅读 » 水墨上仙 4年前 (2021-03-14) 2245浏览 2332个赞
C# 定义一个简单的事件(Event)public class MyClass : IDisposable{ public event EventHandler Disposing; public void Dispose() { // release any resources here if (D……继续阅读 » 水墨上仙 4年前 (2021-03-14) 1391浏览 1293个赞
本范例演示了C#如何对一个给定的字符串进行MD5加密/// <summary>/// Calculates a MD5 hash from the given string and uses the given/// encoding./// </summary>/// <param name="Inpu……继续阅读 » 水墨上仙 4年前 (2021-03-14) 2119浏览 2953个赞
C#提供了两种方式定义多行字符串变量string couplet1 = "Half a league, half a league,\n" + "Half a league onward,"; string couplet2 = @"All in the valley……继续阅读 » 水墨上仙 4年前 (2021-03-14) 3217浏览 2732个赞
C# 声明变量并赋值的代码演示class VariableDeclarations{ public static void Main() { // Type Identifier Assignment (maximum value) bool aBool; aBool = true; ……继续阅读 » 水墨上仙 4年前 (2021-03-14) 3102浏览 2615个赞
本范例介绍了C#中const的用法和一些常量声明class ConstantDeclarations{ public static void Main() { // Type Identifier Initializer const bool aBool = true; co……继续阅读 » 水墨上仙 4年前 (2021-03-14) 2330浏览 1983个赞
本范例演示了C#开发GUI程序时如何避免一个超长处理过程占用全部资源,导致界面不能响应用户事件的方法// You need the Threading library to use the // "Thread.Sleep" function// using System.Threading; // This boolean……继续阅读 » 水墨上仙 4年前 (2021-03-14) 2511浏览 2355个赞
本代码演示了如何创建一个unsafe的指针数组记录struct的地址信息class UnsafePointerArray{ public struct AStruct { public int anInteger; } public static void CreatePointerArray() { ……继续阅读 » 水墨上仙 4年前 (2021-03-14) 1787浏览 1260个赞
本范例演示怎样通过c#中的XmlSerializer序列化一个普通对象// This is the test class we want to // serialize:[Serializable()]public class TestClass{ private string someString; public string……继续阅读 » 水墨上仙 4年前 (2021-03-14) 2181浏览 1010个赞
C#创建多维数组代码using System; public class MultidimensionalArray{ public static void Main() { int[] lowerBounds = {1, 2, 4}; int[] lengths = {4, 2, 1}; ……继续阅读 » 水墨上仙 4年前 (2021-03-14) 2877浏览 2420个赞
C# 里的MD5 算法代码片段using System; public string CreateMD5Hash (string input){ // Use input string to calculate MD5 hash MD5 md5 = System.Security.Cryptography.MD5.Create();……继续阅读 » 水墨上仙 4年前 (2021-03-14) 1920浏览 2680个赞
C# 里的Array.CopyTo复制一个数组的部分到另外一个数组using System; public class CopyToArray{ public static void Main() { object[] objects1 = {"one", "two", "……继续阅读 » 水墨上仙 4年前 (2021-03-14) 2940浏览 2193个赞
Array.Copy可以复制整个数组,也可以对数组进行部分复制using System; public class CopyArray{ public static void Main() { int[] integers = new int[] {5, 10, 15}; double[] doubles……继续阅读 » 水墨上仙 4年前 (2021-03-14) 1559浏览 669个赞
C#华氏温度和摄氏温度的相互专函代码片段public static double CelsiusToFahrenheit (string temperatureCelsius){ double celsius = System.Double.Parse (temperatureCelsius); return (celsius *……继续阅读 » 水墨上仙 4年前 (2021-03-14) 2385浏览 706个赞
C# 克隆整个数组using System; class CloneArray{ public static void Main() { string[] array1 = {"a", "b", "c"}; string[] array2 = (str……继续阅读 » 水墨上仙 4年前 (2021-03-14) 3083浏览 2971个赞
C#通过Array.Clear部分清除数组,这个方法不但可以清除整个数组,还可以部分清除using System; class ArrayClear{ public static void Main() { int[] integers = { 1, 2, 3, 4, 5 }; DumpArray (&qu……继续阅读 » 水墨上仙 4年前 (2021-03-14) 1135浏览 614个赞
C# 捕获OverflowException异常的代码short shorty = 32767; // largest positive shortint integer = shorty + 1;try{ checked // force compiler to obj……继续阅读 » 水墨上仙 4年前 (2021-03-14) 1377浏览 2420个赞
C#使用快速排序法给一个字符串数组排序class Quicksort { private void quickSwap(string[] Array, int Left, int Right) { string Temp = Array[Right]; Array[Right] = Array[Left]; Array[Left] =……继续阅读 » 水墨上仙 4年前 (2021-03-14) 2993浏览 1490个赞
C#通过匿名方法绑定控件的事件protected void Page_Load(object sender, EventArgs e){ // 为Button1的Click绑定一种动作 Button1.Click = delegate { Response.Write("Hello 75271.com&quo……继续阅读 » 水墨上仙 4年前 (2021-03-14) 2358浏览 1653个赞
本示例演示 C# 类如何声明索引属性以表示不同种类事物的类似数组的集合。// indexedproperty.csusing System;public class Document{ // 以下类型允许文档的查看方式与字的数组一样: public class WordCollection { readon……继续阅读 » 水墨上仙 4年前 (2021-03-14) 1519浏览 1160个赞
一个C#编写的字符串排序类,调用方便using System;using System.Collections.Generic;using Sorting.CSharpStringSort;namespace SortTests.Sorting{ public class sfList : List<string> { ……继续阅读 » 水墨上仙 4年前 (2021-03-14) 1520浏览 209个赞
C# 之行存储过程操作数据库演示public void LogRequest(string requestor, string messageBody) { using (SqlConnection conn = new SqlConnection(ConfigurationManager.ConnectionS……继续阅读 » 水墨上仙 4年前 (2021-03-14) 2623浏览 2494个赞
C#控件的缩写标准定义方式,一定要收藏btn Button chk CheckBox ckl CheckedListBox cmb ComboBox dtp DateTimePicker lbl Label llb LinkLabel lst Li……继续阅读 » 水墨上仙 4年前 (2021-03-14) 2171浏览 1763个赞
asp.net通过你的Gmail账号的smpt服务向外发送邮件的例子using System.Web.Mail;using System;public class MailSender{ public static bool SendEmail( string pGmailEmail, string pG……继续阅读 » 水墨上仙 4年前 (2021-03-14) 2433浏览 1066个赞
C# 生成随机数的三种方法汇总转自:http://blog.csdn.net/jason20ming/article/details/8447851 开始,很简单地使用System.Random类来生成随机数。很快,问题就来了,发现当random的生成间隔小于1ms时,随机数就重复了(……继续阅读 » 水墨上仙 4年前 (2021-03-14) 2259浏览 313个赞
JQuery向asp.net ashx提交带中文的参数代码字符编码这个东西,一旦和中文打上交道就不可避免出现乱码,今天项目用到了JQuery向ashx提交中文参数的这一块,折腾了一天,开始是各种乱码,最后中算弄好了。来源:http://blog.csdn.net/wangqiuyun/article/details/8450964 ……继续阅读 » 水墨上仙 4年前 (2021-03-14) 1508浏览 1620个赞
IsGUID函数用来判断字符串是否是GUIDpublic static bool IsGUID(string expression){ if (expression != null) { Regex guidRegEx = new Regex(@"^(\{{0,1}([0-9a-fA-F]){8}-([0-9……继续阅读 » 水墨上仙 4年前 (2021-03-14) 1155浏览 1610个赞
这段代码展示了如何截取用户的点击事件,在相应点击事件之前先之行自己的代码// KeyDown event of some controlprivate void SomeControl_KeyDown(object sender, KeyEventArgs e){ // 1. Event is called directly after t……继续阅读 » 水墨上仙 4年前 (2021-03-14) 2787浏览 2905个赞
设置窗体属性showinTask=false;加notifyicon控件notifyIcon1,为控件notifyIcon1的属性Icon添加一个icon图标;添加窗体最小化事件// this.SizeChanged += new System.EventHandler(this.Form1_SizeChanged); //上面一行是主窗体Initi……继续阅读 » 水墨上仙 4年前 (2021-03-14) 1168浏览 2012个赞
1,判断图片的宽和高的比例,然后进行缩放,以便于使缩略图不变形。2,DrawImage方法为缩略图绘制边框,这样,浏览起来比较美观。3,调用Save方法将生成的缩略图保存到指定的目录下。转自:http://blog.csdn.net/chifengchifeng/article/details/8439884 private void MakeT……继续阅读 » 水墨上仙 4年前 (2021-03-14) 2180浏览 2129个赞
C# 操作INI配置文件代码演示详解转自:http://blog.csdn.net/laner0515/article/details/8439933 INI文件由节、键、值组成。节 [section]参数(键=值) name=value既然ini文件在初始化中使用,那么免不了的……继续阅读 » 水墨上仙 4年前 (2021-03-14) 1514浏览 392个赞
asp.net中字符串编码及编码转换转自:http://blog.csdn.net/haukwong/article/details/8433648 在项目开发中不少朋友都会遇到字符串编码、解码或者编码转换的问题。为了方便初学者朋友,我就在这里抛砖引玉地讲解一下吧。在C#中我们一般使用……继续阅读 » 水墨上仙 4年前 (2021-03-14) 2454浏览 1004个赞
利用HttpURLConnection对象,我们可以向网络发送xml数据.StringBuilder xml = new StringBuilder();xml.append("<?xml version=\"1.0\" encoding=\"utf-8\" ?>");xml……继续阅读 » 水墨上仙 4年前 (2021-03-14) 1110浏览 1200个赞
C# 控制list对象删除重复记录转自:http://blog.csdn.net/learner9023/article/details/8434528 两种比较实用的方法,一个是双循环,一个是hashset.一.循环public static List removeD……继续阅读 » 水墨上仙 4年前 (2021-03-14) 1794浏览 586个赞
随机把数组内的元素打乱,重新排列public static void Shuffle<T>(T[] array) { Random random = new Random(); for (int i = 0; i < 10; i++) { int i……继续阅读 » 水墨上仙 4年前 (2021-03-14) 2246浏览 442个赞