11 lines
150 B
C#
11 lines
150 B
C#
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
|
||
|
public class GenericVector<TX, TY>
|
||
|
{
|
||
|
public TX X { get; set; }
|
||
|
public TY Y { get; set; }
|
||
|
}
|
||
|
|
||
|
|