diff --git a/src/Static/Calc.bf b/src/Static/Calc.bf index b32cc77..d01f4db 100644 --- a/src/Static/Calc.bf +++ b/src/Static/Calc.bf @@ -66,7 +66,7 @@ namespace Strawberry return current >= startDelay && (current - startDelay) % (interval * 2) >= interval; } - static public String StringArgs(String str, Object[] args) + static public String StringArgs(String str, params Object[] args) { for (let i < args.Count) { @@ -119,7 +119,7 @@ namespace Strawberry [Inline] static public void Log(StringView str, params Object[] args) { - let string = StringArgs(scope String(str), args); + let string = StringArgs(scope String(str), params args); Debug.WriteLine(string); } } diff --git a/src/Static/Console.bf b/src/Static/Console.bf index 392992c..947a621 100644 --- a/src/Static/Console.bf +++ b/src/Static/Console.bf @@ -85,7 +85,7 @@ namespace Strawberry static public void Log(StringView str, params Object[] args) { - let string = Calc.[Friend]StringArgs(scope String(str), args); + let string = Calc.[Friend]StringArgs(scope String(str), params args); Log(string); } @@ -185,16 +185,21 @@ namespace Strawberry public void Call(String[] args) { - let objs = scope Object[Method.ParamCount]; - for (let i < objs.Count) + if (Method.ParamCount == 0) + Method.Invoke(null); + else { - if (i < args.Count) - objs[i] = Convert(args[i], Method.GetParamType(i)); - else - objs[i] = Method.GetParamType(i).CreateValueDefault(); + let objs = scope Object[Method.ParamCount]; + for (let i < objs.Count) + { + if (i < args.Count) + objs[i] = Convert(args[i], Method.GetParamType(i)); + else + objs[i] = Method.GetParamType(i).CreateValueDefault(); + } + + Method.Invoke(null, params objs); } - - Method.Invoke(null, objs); } }