public class MyClass
{
private string text;
public string Text
{
get { return text; }
set { text = value; }
}
}
public interface MyInterface { }
public class MyGeneric<Tip> where Tip : MyClass,MyInterface
{
// Bazı kodlar
}
//veya
public class MyGeneric<Tip> where Tip : MyClass,MyInterface,IClonable<Tip>
{
// Bazı kodlar
} |