public static void WriteLine(this ITraceListener @this, string format, params object[] args)
        {
            if (@this == null)
            {
                return;
            }

            @this.Receive(string.Format(CultureInfo.InvariantCulture, format, args));
        }
        public static void WriteLine(this ITraceListener @this, string message)
        {
            if (@this == null)
            {
                return;
            }

            @this.Receive(message);
        }
 public static void WriteLine(this ITraceListener traceListener, string format, params object[] arg1)
 {
     traceListener?.Receive(string.Format(CultureInfo.InvariantCulture, format, arg1));
 }