Comments
Sort by recent activity
Dom/Chris,
Thanks for the update, that is great news regarding a patch. Should I just keep an eye on the forum for the patch being released?
Thanks,
Martin / comments
Dom/Chris,
Thanks for the update, that is great news regarding a patch. Should I just keep an eye on the forum for the patch being released?
Thanks,
Martin
Thanks for the update Dom. / comments
Thanks for the update Dom.
Pruning doesn't seem to work where the parameter is opitonal.
For example... public class Program
{
public void DoIt()
{
MyImportantMethod();
MyImportantMethod("Test");
}
private object MyImportantMethod(string AnImportantMethod = "Test")
{
if (AnImportantMethod != null && AnImportantMethod.Length < 5)
// trivial...
return new object();
else
// trivial...
return null;
}
}
returns the following sig for the private method. private object \u0001(string AnImportantMethod = "Test")
/ comments
Pruning doesn't seem to work where the parameter is opitonal.
For example...public class Program
{
public void DoIt()
{
MyImportantMethod()...