From bb1eb3f2e48ea475cc76d7fee170c23dbc1099ea Mon Sep 17 00:00:00 2001 From: mic050r Date: Tue, 13 Aug 2024 09:53:50 +0900 Subject: [PATCH] =?UTF-8?q?Feat=20(#1)=2024-1.=20=EC=A0=9C=EB=84=A4?= =?UTF-8?q?=EB=A6=AD=20=EC=8B=A4=EC=8A=B5=202?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Program.cs | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/Program.cs b/Program.cs index 77537b0..549554c 100644 --- a/Program.cs +++ b/Program.cs @@ -15,6 +15,17 @@ public Wanted(T value) } } + class Needed // Generic + { + public T Value1; + public U Value2; + public Needed(T value1, U value2) + { + Value1 = value1; + Value2 = value2; + } + } + internal class Program { static void Main(string[] args)