Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gtest-145.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 66a65dc17a378a86376de8e7a355cbb3c7f21ad8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
using System;
public class Test<T>{
        private T[,] data;
        public Test(T[,] data){
                this.data = data;
        }
}
public class Program{
        public static void Main(string[] args){
                Test<double> test = new Test<double>(new double[2,2]);
        }
}