
//선언 public class GameEvent { } public static void testRamda1(string message) => Debug.Log(message); public static void testRamda2() => Debug.Log("testRamda2"); //제너릭 public static void testRamda3(T evt) where T : GameEvent { Debug.Log("testRamde3"); } //메서드 public static void testRamda4(GameEvent evt) { Debug.Log("testRamde4"); }/..