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)
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.
C adalah huruf ketiga dalam alfabet Latin. Dalam bahasa Indonesia, huruf ini disebut ce (dibaca [tʃe]).
void foo<TOne, TTwo>() where TOne : BaseOne where TTwo : BaseTwo
More info here:
http://msdn.microsoft.com/en-us/library/d5x73970.aspx
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With