add ISafeSerializationData
[mcs.git] / tests / gtest-033.cs
blobb64d72f261717ad75cc2c29be003904f1bc87d2d
1 // Generic interfaces
3 interface Foo<R,S>
5 void Hello (R r, S s);
8 interface Bar<T,U,V> : Foo<V,float>
10 void Test (T t, U u, V v);
13 class X
15 static void Test (Bar<long,int,string> bar)
17 bar.Hello ("Test", 3.14F);
18 bar.Test (512, 7, "Hello");
21 static void Main ()
22 { }