2009-03-25から1日間の記事一覧

Look into C# Samples(Delegate) (2)

...(usingとnamespace略) delegate void Sample(string msg); class Program { static void TEST(string msg) { Console.WriteLine(msg); } static void Main(string[] args) { Sample ex1 = new Sample(TEST); TEST("hi"); //C#2.0 暗黙型変換可能 Sample…

Look into C# Samples(Delegate) (1)

using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Test_Delegate { //代表者宣言 delegate int Sample(int x,int y); class Class2 { public static int methodMult(int x, int y) { return x * y; } publ…