If raise will be inlined, tools such as unit test coverage analyzer in Visual Studio will not mark raise calls as partially covered. Methods that use it, such as nullArg, will also benefit from this. Is there a reason whiy raise is not inlined? I can redefine these operators myself, but it requires inline assembly and therefore that annoying red squiggles in Visual Studio.
If
raisewill be inlined, tools such as unit test coverage analyzer in Visual Studio will not markraisecalls as partially covered. Methods that use it, such asnullArg, will also benefit from this. Is there a reason whiyraiseis not inlined? I can redefine these operators myself, but it requires inline assembly and therefore that annoying red squiggles in Visual Studio.