using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Obfuz { public static class ObfuscationInstincts { /// /// Returns the original full name before obfuscated of the type T /// /// /// public static string FullNameOf() { return typeof(T).FullName; } /// /// Returns the original name before obfuscated of the type T /// /// /// public static string NameOf() { return typeof(T).Name; } } }