c#编程系列
文章平均质量分 63
yubo35033720
在公司上班,回家睡睡觉觉,看看书。
展开
-
利用汉字在计算机里面的编码来得到汉字的首拼音:
利用汉字在计算机里面的编码来得到汉字的首拼音:static public string GetChineseSpell(string strText){int len = strText.Length;string myStr = "";for(int i=0;ilen;i++){myStr += getSpell(strText.Substring(i,1));}return myStr;}st转载 2007-06-21 11:33:00 · 940 阅读 · 0 评论 -
C#.net常用函数和办法集
C#.net常用函数和办法集 1、DateTime 数字型 System.DateTime currentTime=new System.DateTime(); 1.1 取当前年月日时分秒 currentTime=System.DateTime.Now; 1.2 取当前年 int 年=currentTime.Year; 1.转载 2007-06-18 17:06:00 · 540 阅读 · 0 评论 -
支持中文的验证码功能
public void CreateImage(string checkCode) { int iwidth = (int)(checkCode.Length * 25); System.Drawing.Bitmap image = new System.Drawing.Bitmap(iwidth, 25);原创 2007-06-13 08:46:00 · 3818 阅读 · 0 评论 -
先导出,再以流的格式输出到客户端。
string name=string.Empty; CrystalDecisions.Shared.DiskFileDestinationOptions diskopt=new CrystalDecisions.Shared.DiskFileDestinationOptions(); customerReport.ExportOptions.ExportDestinationType=C原创 2007-06-05 10:15:00 · 802 阅读 · 0 评论 -
这里面有注册码哦
水晶报表.NET 2003 下使用水晶报表(Crystal Report) [转贴 2007-01-09 16:43:28 ] 发表者: xymo 水晶报表.NET 2003 下使用水晶报表(Crystal Report)Crystal Reports for Visual Studio .NET 是用于 Visual Studio .NET 的标准报表开发工具,原创 2007-06-04 16:25:00 · 744 阅读 · 0 评论 -
DataWindow .NET 介绍
DataWindow .NET原创 2007-06-08 11:09:00 · 1625 阅读 · 0 评论 -
GridView导出Excel研究
GridView导出Excel研究 Introduction: 将GridView中的数据导出为Excel是web应用中的常见功能。在不同的应用场景下有不同的导出技术。在本文中我将介绍一些导出的技术,希望对您有所帮助GridView Export the Excel (Basic Code): . 首先看一个基础的应用。创建一个表格,见截图 然后将数据库中转载 2007-05-30 10:01:00 · 2072 阅读 · 5 评论 -
导出乱码解决方法(c#)
[ 人工智能发表于2007-7-22 22:19:00] <!--google_ad_client = "pub-6023164661521343";google_alternate_ad_url = "http://www.dvpx.com/images/dvpad.jpg";google_ad_width = 300;google_ad_height = 250转载 2007-08-23 16:39:00 · 2087 阅读 · 0 评论 -
C#中自定义异常
在写方法时,是否遇见数据输入的错误呢.如果字符串格式不能转换成整型的什么.不过处理这些错误的异常,.Net已经都帮我们写好了.但是如果一个字符串输入你想判断他是不是二进制数..这种异常你会怎么处理呢,,返回一个错误标识吗?如果你写的函数是二进制转换成十进制,返回的值是整型.这个错误返回值如果标识呢...哈哈,,,你可能会说出几种或几十种解决方法.....下面就是我通过异常来解转载 2007-05-22 08:40:00 · 6157 阅读 · 8 评论 -
.NET Garbage Collection
Java也有GC,当然GC也不是Java首创的,可能Sun的出发点就是要把Java搞得open一点,所以很多东西没有做具体规定,比如GC的算法,还有System.GC()的调用按照Java标准,并不会一定引发一次垃圾回收。之后各路Java虚拟机风起云涌,所以当年我作为Java Developer,理直气壮的没有关心GC 内部的具体细节,这不是一个好借口:) 现在在C#上工作,事实上就转载 2007-05-22 08:37:00 · 814 阅读 · 0 评论 -
c#运算符的重载
示例 1本示例展示如何使用运算符重载创建定义复数加法的复数类 Complex。本程序使用 ToString 方法的重载显示数字的虚部和实部以及加法结果。// complex.csusing System;public struct Complex { public int real; public int imaginary; public Co转载 2007-05-22 08:33:00 · 630 阅读 · 0 评论 -
C# API应用整理文档
C# APIC:/ProgramFiles/MicrosoftVisual Studio .NET/ FrameworkSDK/Samples/ Technologies/ Interop/PlatformInvoke/ WinAPIs/CS目录下有大量的调用API的例子。一、调用格式using System.Runtime.InteropServices; //引用此名称空间,简化后转载 2007-04-28 08:43:00 · 2483 阅读 · 2 评论 -
存储过程分页,这段代码太复杂了。不过值得借鉴
CREATE proc page@RecordCount int output,@QueryStr nvarchar(100)=@#table1@#,--表名、视图名、查询语句@PageSize int=20, --每页的大小(行数)@PageCurrent int=1, --要显示的页@FdShow nvarchar (1000)=@#*@#, --要显示的字段列表@IdentityStr转载 2007-04-26 16:12:00 · 644 阅读 · 5 评论 -
c#数据结构------排序算法
一、冒泡排序(Bubble) 程序代码using System; namespace BubbleSorter { public class BubbleSorter { public void Sort(int[] list) { int i,j,temp; bool done=原创 2007-04-18 12:53:00 · 499 阅读 · 0 评论 -
c#动态备分数据库方法
protected void Button1_Click(object sender, EventArgs e) { string bakname="twohand"; SqlConnection myConnection = new SqlConnection(); string strconn = ConfigurationSettings.原创 2007-04-18 12:55:00 · 494 阅读 · 0 评论 -
C#开发编码规范
C#开发编码规范 注记:Pascal 大小写形式——所有单词第一个字母大写,其他字母小写。Camel 大小写形式——除了第一个单词,所有单词第一个字母大写,其他字母小写。类名使用Pascal大小写形式 public class HelloWorld{ …}方法使用Pascal大小写形式 public class HelloWorld{ void原创 2007-09-24 09:03:00 · 696 阅读 · 0 评论