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

Csharp 高级编程 C7.1.2

时间:2014-05-09 10:03:41      阅读:449      评论:0      收藏:0      [点我收藏+]

标签:style   blog   class   code   java   ext   

第七章 代理(1)

一、代理要声明

二、代理使用步骤

  • 声明代理
  • 初始化代理(使用 实例的方法名 作为参数)
  • 使用代理

代码示例:

bubuko.com,布布扣
/*C7.1.2*/
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace C7._1._2
{
    class Program
    {
        //声明代理
        private delegate string getStr();

        static void Main(string[] args)
        {
            int x = 10;
            getStr testDeleMethod = new getStr(x.ToString );  //初始化的参数是   实例的一个方法名
            Console.WriteLine("Delegate Method Test: the string type of x is " + testDeleMethod());
            Console.ReadLine();
        }
    }

}
bubuko.com,布布扣

 

Csharp 高级编程 C7.1.2,布布扣,bubuko.com

Csharp 高级编程 C7.1.2

标签:style   blog   class   code   java   ext   

原文地址:http://www.cnblogs.com/aocshallo/p/3716826.html

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