Posts
Sort by recent activity
Portable PDB format support
It appears that when you are profiling an application that references another assembly using the new portable PDB format introduced by Microsoft; ANTS reports that it does not have the source code ...
Reference type non-null-checks produce incorrect code
I've noticed this bug for a while now, I'm not sure when it was introduced but take this simple example here:
private static void ABC(byte[] b)
{
if (b != null)
{
Environment.Exit(0...