namespace MatFileHandler { /// /// A matrix of type T. /// /// Element type. internal class MiNum : DataElement where T : struct { /// /// Initializes a new instance of the class. /// /// Contents of the matrix. public MiNum(T[] data) { Data = data; } /// /// Gets the contents of the matrix. /// public T[] Data { get; } } }