X-Git-Url: http://git.chise.org/gitweb/?a=blobdiff_plain;f=M17N.cs;h=a6f3b2917ec2423593b71b1be8ec50d4f162c9f8;hb=eb0187dbcc041b1b793158b5d9626c8492ffaa7c;hp=fe469ae66b154ff61aec603c537f428ae33cff07;hpb=0f115a1b41660e577f69d8823a081444439f60e1;p=m17n%2Fm17n-lib-cs.git diff --git a/M17N.cs b/M17N.cs index fe469ae..a6f3b29 100644 --- a/M17N.cs +++ b/M17N.cs @@ -12,28 +12,10 @@ namespace M17N public static bool debug = false; - public static void DebugPrint (object arg) - { - if (debug) - Console.Write (arg); - } - - public static void DebugPrint (string fmt, object arg) + public static void DebugPrint (string fmt, params object[] arg) { if (debug) Console.Write (fmt, arg); } - - public static void DebugPrint (string fmt, object arg1, object arg2) - { - if (debug) - Console.Write (fmt, arg1, arg2); - } - - public static void DebugPrint (string fmt, object arg1, object arg2, object arg3) - { - if (debug) - Console.Write (fmt, arg1, arg2, arg3); - } } }