笔记
kevin_net
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
remoting配置of iis
http://localhost/yjy">http://localhost/yjy/yjy.soap"/>原创 2005-02-01 21:15:00 · 800 阅读 · 0 评论 -
序列化
public class Serializable { public int n1 = 0; public int n2 = 0; public String str = null;}Serializable obj = new Serializable ();obj.n1 = 1;obj.n2 = 24;obj.str = "一些字符串";IFormatter formatter = ne原创 2005-02-05 11:33:00 · 732 阅读 · 0 评论 -
多态
using System;public class 动物 { public virtual void 叫() { Console.Write("我是一种动物"); } }public class 鸡 : 动物{ public override void 叫() { Cons原创 2005-03-05 21:18:00 · 880 阅读 · 0 评论 -
单件
class Singleton { private static Singleton _instance; public static Singleton Instance() { if (_instance == null) { _instance = new Singleton(); } return _instance; }}原创 2005-04-29 16:45:00 · 1027 阅读 · 0 评论
分享