Communication.cs 248 B

12345678910111213
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace Common
  6. {
  7. public delegate T myDelegate<T, K>(K value);//声明一个委托用来控制数据传输
  8. public class Communication
  9. {
  10. }
  11. }