CLR20r3 Exception
I wrote a small C# app. Installed it in the admin account. It worked fine.
When I tried to execute it from a开发者_如何学编程 non-Admin account and another Admin account, it threw an error.
CLR20r3 System.Security.Security Exception
and the application stopped working.
What can be the issue?
Thanks
Improve your app's unhandled exception handling. Write an event handler for AppDomain.CurrentDomain.UnhandledException and log the value of e.ExceptionObject.ToString().
Or use a debugger.
精彩评论