c# - Does Mono / .NET 4.0 implement AppDomain.FirstChanceException? -


i porting c# app .net on windows mono on linux (both using .net 4.0). when compiling code following code:

error cs1061: type system.appdomain not contain definition firstchanceexception , no extension method firstchanceexception of type system.appdomain found. missing assembly reference? (cs1061) (v8.net-console)

for following code:

appdomain.currentdomain.firstchanceexception += currentdomain_firstchanceexception; 

when looking @ appdomain via assembly browser not see definition firstchanceexception. missing mono or issue on machine? if missing, alternative available?

according source file containing appdomain class, not implemented on mono yet.


Comments

Popular posts from this blog

java - activate/deactivate sonar maven plugin by profile? -

python - TypeError: can only concatenate tuple (not "float") to tuple -

java - What is the difference between String. and String.this. ? -