摘要:
using System;using System.Threading;using System.Runtime.Remoting.Messaging;namespace 通过委托异步调用方法{ //委托声明(函数签名) delegate string MyMethodDelegate(); class MyClass { //要调用的动态方法 public string MyMethod1() { return "Hello Word1"; } //要调用的静态方法 public static string MyMethod2() { return "Hello 阅读全文
posted @ 2009-06-08 23:30 codingsilence 阅读(124) 评论(0) 推荐(0) 编辑