Comparing two files (old and new), I see:
private extern static void SipShowIM(uint dwFlag);
...in the old file, and:
private static extern void SipShowIM(uint dwFlag);
...in the new file.
Why they got changed I don't know; does it matter which comes first, the extern or the static?
Resharper must have done this, because I know I didn't do this (directly) but here's another difference between old:
public volatile static bool ProcessCommands = true;
...and new:
public static volatile bool ProcessCommands = true;
No, the order of those keywords does not matter.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With