java to csharp

L

Lars Schouw

How can I do this in csharp?

public class FilterInput<F extends Input> implements Input

?

Lars
 
A

Arne Vajhøj

How can I do this in csharp?

public class FilterInput<F extends Input> implements Input

Try:

public class FilterInput<F> : Input where F : Input

Arne
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top