• 大小: 1.49KB
    文件类型: .cs
    金币: 1
    下载: 0 次
    发布日期: 2020-12-25
  • 语言: C#
  • 标签: 实例  C#  

资源简介

委托功能实例

资源截图

代码片段和文件信息

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace chapter0605
{
    class Program
    {
        delegate double processDelegate(double param1 double param2);//委托
        static double Multiply(double parma1 double parma2)
        {
            return parma1 * parma2;
        }
        static double Divde(double parma1 double parma2)
        {
            return parma1 / parma2;
        }
        static void Main(string[] args)
        {
            processDelegate process;
            Console.WriteLine(“enter 2 numbers separated with a comma:“);
            string input = Console.ReadLine();
            int commaPos = input.IndexOf(‘‘);
        

评论

共有 条评论