using System; public struct Size { public Size(T w, T h) { this.width = w; this.height = h; } public T width; public T height; }