diff --git a/imm/iu.cs b/imm/iu.cs index de23cd1..0bad376 100644 --- a/imm/iu.cs +++ b/imm/iu.cs @@ -14,7 +14,8 @@ using System.Runtime.CompilerServices; static public class iu { //This can handle both Timed and Recorded - static public T Process( ref T obj, Func fn, string reason = "", + static public T Process( ref T obj, Func fn, + string reason = "", [CallerMemberName] string memberName = "", [CallerFilePath] string filePath = "", [CallerLineNumber] int lineNumber = 0, @@ -26,7 +27,8 @@ static public class iu return obj; } - static public T LightProcess( ref T obj, Func fn, string reason = "", + static public T LightProcess( ref T obj, Func fn, + string reason = "", [CallerMemberName] string memberName = "", [CallerFilePath] string filePath = "", [CallerLineNumber] int lineNumber = 0,