「C#入門」匿名メソッドのサンプル

2021年2月20日

使用例

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
using System;
delegate void delegateF(string str);
class SampleTest
{
public static void Main()
{
delegateF ta = (string str) =>{ Console.WriteLine(str + "234");}
ta("AA01");
}
}
using System; delegate void delegateF(string str); class SampleTest { public static void Main() { delegateF ta = (string str) =>{ Console.WriteLine(str + "234");} ta("AA01"); } }
using System;

delegate void delegateF(string str);

class SampleTest
{
      public static void Main()
      {
        delegateF ta =  (string str) =>{ Console.WriteLine(str + "234");}
        ta("AA01"); 
      }
}

 

C#

Posted by arkgame