标题:创建一个委托,在请求用户输入时,使用它模拟Console.ReadLine()函数并输出
取消只看楼主
andyhebear
Rank: 1
等 级:新手上路
帖 子:16
专家分:0
注 册:2007-11-12
 问题点数:0 回复次数:1 
创建一个委托,在请求用户输入时,使用它模拟Console.ReadLine()函数并输出

using System;
using System.Collections.Generic;
using System.Text;

namespace ConsoleApplication12
{
class Program
//创建一个委托,在请求用户输入时,使用它模拟Console.ReadLine()函数并输出
{
//声明委托
delegate void ProcessDelegate1(string param);
delegate string ProcessDelegate2();
//获得输入的函数
static string getInput()
{
string str = Console.ReadLine();
return str;
}
//输出函数
static void getOutput(string param)
{
Console.WriteLine(param);
}
static void Main(string[] args)
{
//声明2委托变量
ProcessDelegate1 process1;
ProcessDelegate2 process2;
process1 = new ProcessDelegate1(getOutput);
process2 = new ProcessDelegate2(getInput);
string str = process2();//输入
process1(str);//输出
Console.ReadKey();

}
}
}

搜索更多相关主题的帖子: Console ReadLine 函数 string using 
2007-11-15 09:10
andyhebear
Rank: 1
等 级:新手上路
帖 子:16
专家分:0
注 册:2007-11-12
得分:0 
Console.WriteLine(myOrder.total());
2007-11-15 09:21



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-186062-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.305881 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved