.Net技术个人心得
Jason-Jin
擅长:react,redux,html5,js,flex,node.js,webapp,hybrid
欢迎大家关注我的公众号:不只是程序员
展开
-
c#冒泡排序算法
using System;using System.Collections.Generic;using System.Text;using System.Collections;namespace 冒泡排序算法{ /// /// 作者:it小金 /// 说明:冒泡排序算法 /// class Program { static void Main(string[] args) {原创 2010-08-30 16:24:00 · 2391 阅读 · 0 评论 -
操作字符串的函数
<br /> 自己写的一个操作字符串的函数<br /> <br /> /// <summary> /// 作者:it小金 /// 说明:在字符串中找出数字部分 /// </summary> /// <param name="str">待检查的字符串</param> /// <returns></returns> public static string StrFindNum(string str原创 2011-06-02 10:25:00 · 580 阅读 · 0 评论 -
c#实现选择排序算法
c#实现选择排序算法原创 2011-05-26 09:20:00 · 1003 阅读 · 0 评论 -
c# checked运算符的使用
<br />using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace ConsoleApplication1{ /// <summary> /// 作者:it小金 /// 作用:显示类型转换,checked运算符的使用 /// </summary> class Program {原创 2010-09-21 10:10:00 · 692 阅读 · 0 评论 -
c#数组简单排序方法
<br />using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace ConsoleApplication1{ /// <summary> /// 作者:it小金 /// 作用:数组的简单排序 /// </summary> class Program { static原创 2010-09-20 11:56:00 · 526 阅读 · 0 评论 -
c#结构体
using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace ConsoleApplication1{ /// /// 作者:it小金 /// 作用:c#结构 /// 说明:类是引用类型,结构是值类型,注意二者区别 /// class Program { sta原创 2010-09-16 10:09:00 · 505 阅读 · 0 评论 -
c#只读字段和常量的区别,以及静态构造函数的使用
<br />using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace ConsoleApplication1{ /// <summary> /// 作者:it小金 /// 功能:c#只读字段和常量的区别,以及静态构造函数的使用 /// </summary> class Program {原创 2010-09-15 11:37:00 · 1771 阅读 · 0 评论 -
c#匿名类型
<br />using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace ConsoleApplication1{ /// <summary> /// 作者:it小金 /// 作用:匿名类型的使用 /// 说明:var 关键字,用于表示隐式类型化的变量。var 与new 关键字一起使用时,可以创建匿名类型。 ///原创 2010-09-16 09:35:00 · 1852 阅读 · 0 评论 -
c#提取数组中不同的元素
<br />using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace 提取数组中不相同的数据{ /// <summary> /// 作者:it小金 /// 作用:提取数组中不相同的数据 /// </summary> class Program { static void Main(s原创 2010-09-02 10:01:00 · 3675 阅读 · 0 评论 -
c#值传递和引用传递,以及ref和out关键字的区别
<br />向一个方法中传递参数,有两种类型,一种是按值传递,一种是按引用传递<br /> <br />按值传递时,方法对参数的改变不会影响原来变量的值<br /> <br />按引用传递时,方法对参数的改变会同时改变原有变量的值<br /> <br />ref和out关键字会强制将值类型变量,按照引用类型传递<br /> <br />ref和out区别:使用ref必须对变量进行初始化,而使用out关键字时候,需要传递的变量不需要进行初始化原创 2010-09-14 10:25:00 · 958 阅读 · 2 评论 -
c#顺序表倒置
<br />using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace 顺序表的倒置{ /// <summary> /// 作者:it小金 /// 说明:顺序表的倒置 /// </summary> class Program { static void Main(string[] ar原创 2010-08-30 17:09:00 · 1719 阅读 · 0 评论 -
使用c#实现顺序表的操作
<br />using System;using System.Collections.Generic;using System.Text;namespace 线性结构{ /* 作者:it小金 */ //线性表接口 public interface IListDS<T> { int GetLength();//求长度 void Clear();//清空操作原创 2010-08-30 16:20:00 · 3594 阅读 · 0 评论 -
c#中的命名空间别名修饰符
<br />我们可以使用using关键字,进行命名控件的别名,例如:using alias = NamespaceName;<br /> <br />在进行别名后,如果对这个空间下的类进行实例化时,我们使用::修饰符<br /> <br />如下代码:<br /> <br />using System;using Introduction = Wrox.ProCSharp.Basics;class Test{public static int Main(){Introduction:原创 2010-09-13 09:50:00 · 1347 阅读 · 0 评论 -
将两个顺序表合成一个新的顺序表,并进行排序
<br />using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace 两个顺序表合成一个且升序排列{ /// <summary> /// 作者:it小金 /// 说明:将两个顺序表合成一个新的顺序表,并进行排序 /// </summary> class Program { stati原创 2010-08-31 11:28:00 · 3301 阅读 · 0 评论 -
default关键字在泛型类中的使用
<br />在泛型类和泛型方法中,在预先未知以下情况时,如何将默认值分配给参数化类型 T: <br />T 是引用类型还是值类型。<br />如果 T 为值类型,则它是数值还是结构。<br />如T为引用类型,则t=null有效,若T为数值类型,则t=0才有效,若为结构,则要符合结构中的每个类型<br /> <br />所以我们在不确定的情况下,使用default关键字,系统会自动为它分配默认值<br /> <br />假设有一个泛型类<br /> <br />其中有一个泛型方法:<br /> <br />原创 2010-08-30 15:43:00 · 664 阅读 · 0 评论 -
Asp.net 配置web.Config 在出错时跳转到相应页面
每当用户访问错误页面时,会出现不友好的404错误,所以为了防止这种不友好,我们在web.config中的节点下配置 ,在出现比如403 404这样的错误时,跳转到我们自定义的页面 :用户错误配置节该配置节能够指定当出现错误时,系统自动跳转到一个错误发生的页面,同时也能原创 2011-09-21 11:10:50 · 7391 阅读 · 1 评论