C#根据域名获取ip地址using System.Net; public class NetworkUtils { public static string GetHostName(IPAddress ipAddress) { IPHostEntry entry = Dns.GetHos……继续阅读 » 水墨上仙 4年前 (2021-03-12) 2661浏览 1673个赞
本示例演示如何创建具有单个类型参数的自定义泛型列表类,以及如何实现 IEnumerable 以便对列表的内容启用 foreach 迭代。此示例还演示客户端代码如何通过指定类型参数来创建该类的实例,以及该类型参数的约束如何实现对类型参数执行其他操作。using System;using System.Collections;using System.……继续阅读 » 水墨上仙 4年前 (2021-03-12) 2061浏览 2587个赞
本示例演示了如何显式地实现接口成员显式地实现接口成员// explicit1.csinterface IDimensions { float Length(); float Width();}class Box : IDimensions { float lengthInches; float widthInches;……继续阅读 » 水墨上仙 4年前 (2021-03-12) 1627浏览 2841个赞
本示例演示如何在 C# 中声明、调用和配置事件 代码1// events1.csusing System;namespace MyCollections { using System.Collections; // 用于对更改通知进行挂钩的委托类型。 pub……继续阅读 » 水墨上仙 4年前 (2021-03-12) 2025浏览 1996个赞
C#委托使用范例代码// compose.csusing System;delegate void MyDelegate(string s);class MyClass{ public static void Hello(string s) { Console.WriteLine(" Hello, {……继续阅读 » 水墨上仙 4年前 (2021-03-12) 2191浏览 1470个赞
本示例演示了委托类型。它演示了如何将委托映射到静态方法和实例方法,以及如何组合它们以创建多路广播委托// bookstore.csusing System;// 用于处理书店的一组类:namespace Bookstore { using System.Collections; // 描述图书列表中的一本书: public s……继续阅读 » 水墨上仙 4年前 (2021-03-12) 1327浏览 1340个赞
本示例演示了条件方法,它们提供一种功能强大的机制,通过它可以根据是否定义了符号来包括或省略方法调用。// CondMethod.cs// 编译时使用:/target:library /d:DEBUGusing System; using System.Diagnostics;namespace TraceFunctions { publ……继续阅读 » 水墨上仙 4年前 (2021-03-12) 2818浏览 521个赞
本示例演示如何访问命令行,并演示访问命令行参数数组的两种方法。// cmdline1.cs// 参数:A B Cusing System;public class CommandLine{ public static void Main(string[] args) { // Length 属性用于获取数组的长度。 ……继续阅读 » 水墨上仙 4年前 (2021-03-12) 3022浏览 2256个赞
本示例演示了 C# 程序如何能够与非托管 COM 组件交互操作// interop1.cs// 用“csc /R:QuartzTypeLib.dll interop1.cs”生成using System;class MainClass { /**************************************************……继续阅读 » 水墨上仙 4年前 (2021-03-12) 1944浏览 2614个赞
本示例演示如何实现可与 foreach 语句一起使用的集合类// tokens2.csusing System;using System.Collections;public class Tokens: IEnumerable{ private string[] elements; Tokens(string source, cha……继续阅读 » 水墨上仙 4年前 (2021-03-12) 2571浏览 345个赞
本示例演示如何实现可与 foreach 语句一起使用的集合类// tokens.csusing System;// 使命名空间 System.Collections 可用:using System.Collections;// 声明 Tokens 类:public class Tokens : IEnumerable{ private……继续阅读 » 水墨上仙 4年前 (2021-03-12) 2219浏览 2246个赞
本示例演示了如何创建自定义属性类,如何在代码中使用这些类,以及如何通过反射查询它们// AttributesTutorial.cs// 本示例表明类属性和方法属性的用法。using System;using System.Reflection;using System.Collections;// IsTested 类是用户定义的自定义属性类……继续阅读 » 水墨上仙 4年前 (2021-03-12) 2260浏览 1731个赞
本示例介绍并演示 C# 中的数组是如何工作的// 版权所有 (C) Microsoft Corporation。保留所有权利。// arrays.csusing System;class DeclareArraysSample{ public static void Main() { // 一维数组 ……继续阅读 » 水墨上仙 4年前 (2021-03-12) 1452浏览 2784个赞
本示例演示了如何使用匿名委托来计算员工的薪水奖金。使用匿名委托简化了程序,因为无需再定义一个单独的方法。(-:The data for each employee is stored in an object containing personal details as well as a delegate that references the algor……继续阅读 » 水墨上仙 4年前 (2021-03-12) 1181浏览 2881个赞
C#用匿名方法定义委托//用匿名方法定义委托 class Program { delegate string MyDelagate(string val); static void Main(string[] args) { string str1 = " 匿名方法外部 &……继续阅读 » 水墨上仙 4年前 (2021-03-12) 1150浏览 1080个赞
一个将汉字转换成拼音的C#类代码using System;using System.Collections.Generic;using System.Text;namespace Common{ public class Pinyin { private static int[] pyvalue=new int[]……继续阅读 » 水墨上仙 4年前 (2021-03-12) 1937浏览 1735个赞
C#返回字符串的字节长度,一个中文算两个字符 //得到字符串的长度 public static int GetLength(string str) { if (str.Length == 0) return 0; ASCIIEncoding ascii = new ASCI……继续阅读 » 水墨上仙 4年前 (2021-03-12) 1742浏览 1730个赞
C#抓取网页代码存在字符串里public static string GetWebPageAsString(string url) { HttpWebRequest httpWebRequest =(HttpWebRequest)WebRequest.Create(url); // you may need these next two……继续阅读 » 水墨上仙 4年前 (2021-03-12) 1489浏览 122个赞
C# 下载网页并在控制台输出using System;using System.Net;using System.Text;using System.IO;namespace Test {class GetWebPage { public static void Main(string[] args) { for(int i……继续阅读 » 水墨上仙 4年前 (2021-03-12) 1916浏览 2009个赞
C# 使用属性范例代码public class Plane { protected double mySpeed = 300.0D; public double TopSpeed { get {return mySpeed;} ……继续阅读 » 水墨上仙 4年前 (2021-03-12) 2310浏览 996个赞
C# 运算符重载使用范例public class Plane { public virtual double TopSpeed() { return 300.0D;} public static bool operator>(Plane one, Plane two) { return one.To……继续阅读 » 水墨上仙 4年前 (2021-03-12) 1553浏览 532个赞
C# 虚函数使用范例using System;namespace Test2 { class Plane { public double TopSpeed() { return 300.0D; } } class Jet : Plane { public double TopSp……继续阅读 » 水墨上仙 4年前 (2021-03-12) 2805浏览 1960个赞
C#构造函数、静态构造函数、析构函数的用法using System;class Test2 { static int i; static Test2() { // a constructor for the entire class called //once before……继续阅读 » 水墨上仙 4年前 (2021-03-12) 2654浏览 2251个赞
C#格式化输出内容nt k = 16;Console.WriteLine(" '{0,-8}'",k); // produces: '16 'Console.WriteLine(" '{0,8}'",k); // pro……继续阅读 » 水墨上仙 4年前 (2021-03-12) 1189浏览 2749个赞
C# xml文件反序列化读入数据到objectpublic static object DeSerializeFromXmlString(System.Type typeToDeserialize, string xmlString) { byte[] bytes = System.Text.Encoding.UTF8.GetBytes(xml……继续阅读 » 水墨上仙 4年前 (2021-03-12) 1829浏览 1618个赞
C#写入对象或者集合类型数据到xml文件public static string SerializeToXmlString(object objectToSerialize) { MemoryStream memoryStream = new MemoryStream(); System.Xml.Serialization.XmlSer……继续阅读 » 水墨上仙 4年前 (2021-03-12) 2494浏览 2902个赞
C#简单的写入xml文件的方法StringWriter stringWriter = new StringWriter();XmlTextWriter xmlTextWriter = new XmlTextWriter(stringWriter);xmlTextWriter.Formatting = Formatting.Indented;xml……继续阅读 » 水墨上仙 4年前 (2021-03-12) 1789浏览 1983个赞
C# 原始的方法写入xml文件static void writeTree(XmlNode xmlElement, int level) { String levelDepth = ""; for(int i=0;i<level;i++) { levelDepth += " &quo……继续阅读 » 水墨上仙 4年前 (2021-03-12) 2366浏览 300个赞
C#通过流写入一行数据到文件using System;using System.IO;public class WriteFileStuff {public static void Main() { FileStream fs = new FileStream("c:\\tmp\\WriteFileStuff.txt&qu……继续阅读 » 水墨上仙 4年前 (2021-03-12) 2763浏览 602个赞
C#一次性写入全部文件到文件using System;namespace PlayingAround { class ReadAll { public static void Main(string[] args) { string myText = "Line1" + Enviro……继续阅读 » 水墨上仙 4年前 (2021-03-12) 2283浏览 2260个赞
C#逐行读取文件,对于大文件的读取非常有用StreamReader sr = new StreamReader("fileName.txt");string line;while((line= sr.ReadLine()) != null) { Console.WriteLine("xml template:&quo……继续阅读 » 水墨上仙 4年前 (2021-03-12) 2454浏览 2858个赞
C#读取文件的所有行到数组using System;namespace PlayingAround { class ReadAll { public static void Main(string[] args) { string[] lines = System.IO.File.ReadAllLine……继续阅读 » 水墨上仙 4年前 (2021-03-12) 3000浏览 2406个赞
C#通过文件流读取文件内容public static string getFileAsString(string fileName) { StreamReader sReader = null; string contents = null; try { FileStream fileStream = new FileSt……继续阅读 » 水墨上仙 4年前 (2021-03-12) 2285浏览 975个赞
C#把整个文件的内容读入字符串变量using System;namespace PlayingAround { class ReadAll { public static void Main(string[] args) { string contents = System.IO.File.ReadAl……继续阅读 » 水墨上仙 4年前 (2021-03-12) 1422浏览 575个赞
c#通过DES加密算法加密大文件using System.Collections; using System.Configuration; using System.Data; using System.Linq; using System.Web; using System.Web.Security; using System.Web.U……继续阅读 » 水墨上仙 4年前 (2021-03-12) 2548浏览 870个赞
一个C#控制台程序演示hello worldusing System;public class HelloWorld{ public static void Main(string[] args) { Console.Write("Hello World!"); }}……继续阅读 » 水墨上仙 4年前 (2021-03-12) 3061浏览 1644个赞
C# LINQ判断素数的简单代码static bool IsPrime(int n){ return Enumerable.Range(2, (int) Math.Sqrt(n)-1).All(i => n%i != 0);}……继续阅读 » 水墨上仙 4年前 (2021-03-12) 3120浏览 665个赞
C# 符合RFC3986标准的urlencode 类 /// <summary> /// Provides implementation of RFC3986 Percent Encoding mechanism. /// </summary> public class RFC3986Encoder ……继续阅读 » 水墨上仙 4年前 (2021-03-12) 1629浏览 2183个赞
C#访问SqlServer设置链接超时,这段代码设置超时时间为60秒,默认为30秒using (connection) { SqlCommand sqlcommand = connection.CreateCommand(); sqlcommand.CommandTimeout = 60; //default is 30 seconds……继续阅读 » 水墨上仙 4年前 (2021-03-12) 1816浏览 2223个赞
C#用钩子获得按键信息实例 窗体相关代码:using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;us……继续阅读 » 水墨上仙 4年前 (2021-03-12) 1750浏览 472个赞
C#查询SqlServer数据库并返回单个值static public string GetSqlAsString(string sqlText, SqlParameter[] sqlParameters, string databaseConnectionSt……继续阅读 » 水墨上仙 4年前 (2021-03-12) 2387浏览 366个赞
之前我贴过一段很简单的C#生成plist文件的代码,但是反过来如果要读取plist文件呢?有没有实现这样功能的类库呢?答案是肯定的,下午在网上找了一个iphone-plist-net库试用了一下感觉很是方便。来源:http://blog.csdn.net/wangqiuyun/article/details/7931972 //写……继续阅读 » 水墨上仙 4年前 (2021-03-12) 1679浏览 2013个赞
C#从XmlDocument返回一个指定的属性string total = xmlDocument.SelectSingleNode("Surveys/Survey[@name='Beer']/cellName[@name='MatureBlueCollarMen']").Attributes……继续阅读 » 水墨上仙 4年前 (2021-03-12) 1681浏览 1218个赞
C#输出xmlNodeList到控制台 public static string ToHTML(XmlNodeList xmlNodeList) { StringWriter stringWriter = new StringWriter(); XmlTextWriter xmlTextWriter = new Xm……继续阅读 » 水墨上仙 4年前 (2021-03-12) 1796浏览 685个赞
C# 执行外部命令///<summary> ///executes a system command from inside csharp ///</summary> ///<param name="cmd">a dos type command like "isql ...&qu……继续阅读 » 水墨上仙 4年前 (2021-03-12) 1560浏览 2416个赞