c#入门经典(第三版) 练习6.8(3)
题目:创建一个委托,在请求用户输入时,使用它模拟Console.ReadLine()函数。
代码:
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Text.RegularExpressions; namespace Test { class Program { delegate string processdelegate(); static void Main(string[] args) { processdelegate process; process = new processdelegate(Console.ReadLine); string str = process(); Console.WriteLine("输入的字符串:{0}",str); Console.ReadKey(); } } }
贯彻自己的思想