ICorDebugILFrame interface has method EnumerateArguments.
But this method works sometimes strange.
Returned enumerator contains 3 arguments for this method :
public static void Fun2(Class1 c, int x, string s)
{
return;
}
and no arguments for this method :
public static int Fun1(Class1 c, int x, string s)
{
return(0);
}I exemine frame on FunctionEnter profiler callback. Any ideas what's happening? -- WielO mailto:[EMAIL PROTECTED] ----------------------------------------------------- You can read messages from the DOTNET archive, unsubscribe from DOTNET, or subscribe to other DevelopMentor lists at http://discuss.develop.com.
