Hi,
I tried to build a very very small .NET app in F#.
It just has to convert a small string into another string and print the result to the console like:
convert.exe myString ==> prints something like "myConvertedString"
I used dottrace to analyze the performance:
- 26% (168ms) in my actual string conversion (I thinks this is ok.)
- 65,80% (425ms) in ResolvePolicy in System.Security.SecurityManager
A runtime > 500ms on every execution is way too slow. Can I do something to improve this?
It would be Ok if only the first call needs this time.
Regards, forki