namespace smoothdev.Web.Sample.MonoRail
use System.Web
class Application
inherits HttpApplication
def init is override
pass
which give
- Code: Select all
error: The modifier "override" is not valid for this item (C#)
the csharp output is trying to redefine a default constructor for the class
any idea how to workaround?