mini VB.net compiler?

D

darrel

Not sure how to ask this, but is there such a thing as a small standalone
VB.net script application that will just execute functions for testing?

For instance, maybe I'm working on a 10 line function and just want to test
it independant of the entire web application and don't want to bother with
having to add a bunch of response.writes to my page and recompiling and
running it in the browser.

Or maybe VS.net already does this?

-Darrel
 
C

Chris Dunaway

Do a Google Search for Snippet Compiler.

Or you could use the Macro Editor to test out code.
 
J

John Bailo

You can always add a Console application to your solution and call that
method from Main just add a class reference or make it part of the same
namespace as the one that your method is in...

Not sure how to ask this, but is there such a thing as a small standalone
VB.net script application that will just execute functions for testing?

For instance, maybe I'm working on a 10 line function and just want to
test it independant of the entire web application and don't want to bother
with having to add a bunch of response.writes to my page and recompiling
and running it in the browser.

Or maybe VS.net already does this?

-Darrel

--
 

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