摘要:
public delegate string MyMethodDelegate(int myInt); public class MySimpleClass { public string MyStringMethod(int myInt) { if (myInt > 0) return "positive"; if (myInt < 0) return "negative"; ret... 阅读全文
posted @ 2010-04-15 14:35
风干的记忆
阅读(265)
评论(0)
推荐(1)