vote up 4 vote down star

Could you please show me the C# Equivalent of this VB.NET code:

Public Partial Class Index
    Inherits System.Web.Mvc.Viewpage(Of List(Of Task))


End Class

I am not sure where/how to add it in for C#:

public partial class DirList : System.Web.Mvc.ViewPage
{

}

The code is suppose to tell the class to expect a list of tasks from the controller...

flag

70% accept rate

1 Answer

vote up 12 vote down check
public partial class DirList : System.Web.Mvc.ViewPage<List<Task>>
{

}
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.