Generic class oluştururken birden fazla tip parametesi ve herbiri için kısıtlama verilecekse anahtar kelime enter olacaktır.

public class point<T, U>    //----- enter
   where T :
struct    //----- enter
   where U :
struct
{
   T x, y, z;
   U t;
   ......