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; } /// /// register original type name to type mapping. /// /// public static void RegisterReflectionType() { ObfuscationTypeMapper.RegisterType(typeof(T).FullName); } } }