是否可以在自托管控制台应用程序中使用ServiceStack Mini Profiler?如果是,我应该在哪里放置探查器启用/禁用代码?在ASP.NET托管的ServiceStack中,它通常位于Application_BeginRequest和Application_EndRequest方法中.
解决方法
你可以这样做:
namespace ConsoleApplication1 { class Program { static void Main(string[] args) { // enable here // your code // disable here } } }
namespace ConsoleApplication1 { class Program { Program() { // enable here } ~Program(){ // disable here } static void Main(string[] args) { // your code } } }