码迷,mamicode.com
首页 > 其他好文 > 详细

委托的简单例子

时间:2017-01-28 18:08:25      阅读:253      评论:0      收藏:0      [点我收藏+]

标签:console   double   gen   read   string   enum   ace   lang   return   



  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace ConsoleApplication1 {
  7. class Program {
  8. delegate double ProcessDelegate(double param1, double param2);
  9. static double Multiply(double param1, double param2) {
  10. return param1 * param2;
  11. }
  12. static double Divid(double param1, double param2) {
  13. return param1 / param2;
  14. }
  15. static void Main(string[] args) {
  16. ProcessDelegate process;
  17. double param1 = 200;
  18. double param2 = 300;
  19. process = new ProcessDelegate(Divid);
  20. double d = process(param1, param2);
  21. Console.WriteLine(d);
  22. }
  23. }
  24. }





委托的简单例子

标签:console   double   gen   read   string   enum   ace   lang   return   

原文地址:http://www.cnblogs.com/xiejunzhao/p/1e82297de2d3f1c89792b4df8f6d9ca0.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!