Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

C# generics syntax for multiple type parameter constraints [duplicate]

Tags:

c#

generics

Possible Duplicate:
Generic methods and multiple constraints

I need a generic function that has two type constraints, each inheriting from a different base class. I know how to do this with one type:

void foo<T>() where T : BaseClass 

However, I don't know how to do this with two types:

void foo<TOne, TTwo>() where TOne : BaseOne // and TTwo : BaseTwo ??? 

How do you do this? (using .NET 2)

like image 418
Jon B Avatar asked Jun 08 '09 15:06

Jon B


People also ask

Bahasa C digunakan untuk apa?

Meskipun C dibuat untuk memprogram sistem dan jaringan komputer namun bahasa ini juga sering digunakan dalam mengembangkan software aplikasi. C juga banyak dipakai oleh berbagai jenis platform sistem operasi dan arsitektur komputer, bahkan terdapat beberepa compiler yang sangat populer telah tersedia.

Apa yang dimaksud dengan huruf C?

C adalah huruf ketiga dalam alfabet Latin. Dalam bahasa Indonesia, huruf ini disebut ce (dibaca [tʃe]).


1 Answers

void foo<TOne, TTwo>()     where TOne : BaseOne    where TTwo : BaseTwo 

More info here:
http://msdn.microsoft.com/en-us/library/d5x73970.aspx

like image 88
Joel Martinez Avatar answered Oct 20 '22 05:10

Joel Martinez