// dnlib: See LICENSE.txt for more info namespace dnlib { /// /// dnlib settings /// public static class Settings { /// /// true if dnlib is thread safe. (THREAD_SAFE was defined during compilation) /// public static bool IsThreadSafe { get { #if THREAD_SAFE return true; #else return false; #endif } } } }