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)