C#プログラム、匿名関数を知らせて、依頼します!
3650 ワード
- #define test1
- //#define test2
- using System;
- using System.Collections.Generic;
- using System.Text;
-
- namespace cmdTest
- {
- class Program
- {
- delegate void ShowLine(string linemessage);
- static void Main(string[] args)
- {
-
-
- #if test1
-
- ShowLine line = delegate(string s)
- {
- Console.WriteLine(s);
- };
-
- line("test1\t"+@"http://hi.baidu.com/snowleung");
- #endif
-
- #if test2
- ShowLine line=new ShowLine(show);
- line("test2\t"@"http://hi.baidu.com/snowleung");
- #endif
-
- Console.ReadKey();
- }
-
- static void show(string s)
- {
- Console.WriteLine(s);
- }
- }
- }