摘要: using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace ConsoleApplication6{ class Program { [Developer("李四", "1", Reviewed = true)] public void SomeMethod() { } p... 阅读全文
posted @ 2009-07-10 12:22 Ry5 阅读(199) 评论(0) 推荐(0) 编辑
摘要: using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace abstractFactory{ class abstractFactory //第153行 和 15行 扩展就可以了 { static void Main(string[] args) { GameManager ... 阅读全文
posted @ 2009-07-10 12:21 Ry5 阅读(156) 评论(0) 推荐(0) 编辑
摘要: 在很多时候需要按照一定的格式生成一定数量的随机数,下面是实现方法 下面是自己写的类 public class MyRandom { private string _strin; private string _strout; private Random _rnd; public MyRandom(string strin) { _rnd=new Random(System.Environment... 阅读全文
posted @ 2009-07-10 12:20 Ry5 阅读(349) 评论(0) 推荐(0) 编辑