using System.Diagnostics; namespace Sanchime.Toolkits; public static class Basic { public static void WriteLine(this T @this) { Debug.WriteLine(@this); } public static void WriteLine(this T @this, Func func) => func(@this).WriteLine(); public static bool IsNullOrEmpty(this string @this) => string.IsNullOrEmpty(@this); }