static public IEnumerable <Attribute> GetAllCustomAttributes(this ICustomAttributeProvider item, bool inherit) { return(GET_ALL_CUSTOM_ATTRIBUTES.Fetch(item, inherit)); }
static public IEnumerable <Type> GetTypeAndAllBaseTypes(this Type item) { return(GET_TYPE_AND_ALL_BASE_TYPES.Fetch(item)); }
static public IEnumerable <Type> GetAllBaseTypesAndInterfaces(this Type item, DetailDirection direction) { return(GET_ALL_BASE_TYPES_AND_INTERFACES.Fetch(item, direction)); }
public string[] Split(string input) { return(split_cache.Fetch(input)); }
public string Replace(string input, string replacement) { return(replace_cache.Fetch(input).Replace(replacement)); }
static public ParameterInfo[] GetEffectiveParameters(this MethodBase item) { return(GET_EFFECTIVE_PARAMETERS.Fetch(item)); }
public MatchCollection Matches(string input) { return(matches_cache.Fetch(input)); }
static public CachedRegex CompileCachedRegexFromPattern(this string pattern) { return(COMPILE_CACHED_REGEX_FROM_PATTERN.Fetch(pattern)); }
public bool IsMatch(string input) { return(is_match_cache.Fetch(input)); }
static public Regex GetReverseRegexByPattern(this string pattern) { return(GET_REVERSE_REGEX_BY_PATTERN.Fetch(pattern)); }
static public Regex CompileReverseRegexFromPattern(this string pattern) { return(COMPILE_REVERSE_REGEX_FROM_PATTERN.Fetch(pattern)); }
static public BasicType GetBasicType(this Type item) { return(GET_BASIC_TYPE.Fetch(item)); }
static public string GetId() { return(GET_ID.Fetch()); }
static public EnumInfo GetEnumInfo(Type type) { return(GET_ENUM_INFO.Fetch(type)); }
static public IEnumerable <Attribute> GetAllCustomAttributesOfType(this ICustomAttributeProvider item, Type attribute_type, bool inherit) { return(GET_ALL_CUSTOM_ATTRIBUTES_OF_TYPE.Fetch(item, attribute_type, inherit)); }
public Match Match(string input) { return(match_cache.Fetch(input)); }
static public string GetString(int level) { return(GET_STRING.Fetch(level)); }
static public Assembly GetAssembly(this AssemblyName item) { return(GET_ASSEMBLY.Fetch(item.GetSimpleName())); }