91av视频/亚洲h视频/操亚洲美女/外国一级黄色毛片 - 国产三级三级三级三级

  • 大小: 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(‘‘);
????????

評論

共有 條評論