get <url> do
{ csharp }
end
and expanding that out into a C# file for compilation:
using ....
public class NinaApp : Application {
public NinaApp ()
{
Get ("<the url>", <the csharp>);
}
}
I've always thought something like this would be nice for cutting down
on all boilerplate code, but I suppose people that use an IDE wouldn't
like it because they wouldn't get their code completion.
Thanks!
Jackson