mini VB.net compiler?

  • Thread starter Thread starter darrel
  • Start date Start date
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
 
Do a Google Search for Snippet Compiler.

Or you could use the Macro Editor to test out code.
 
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

--
 
Back
Top