コード例 #1
0
 static public IEnumerable <Attribute> GetAllCustomAttributes(this ICustomAttributeProvider item, bool inherit)
 {
     return(GET_ALL_CUSTOM_ATTRIBUTES.Fetch(item, inherit));
 }
コード例 #2
0
 static public IEnumerable <Type> GetTypeAndAllBaseTypes(this Type item)
 {
     return(GET_TYPE_AND_ALL_BASE_TYPES.Fetch(item));
 }
コード例 #3
0
 static public IEnumerable <Type> GetAllBaseTypesAndInterfaces(this Type item, DetailDirection direction)
 {
     return(GET_ALL_BASE_TYPES_AND_INTERFACES.Fetch(item, direction));
 }
コード例 #4
0
 public string[] Split(string input)
 {
     return(split_cache.Fetch(input));
 }
コード例 #5
0
 public string Replace(string input, string replacement)
 {
     return(replace_cache.Fetch(input).Replace(replacement));
 }
コード例 #6
0
 static public ParameterInfo[] GetEffectiveParameters(this MethodBase item)
 {
     return(GET_EFFECTIVE_PARAMETERS.Fetch(item));
 }
コード例 #7
0
 public MatchCollection Matches(string input)
 {
     return(matches_cache.Fetch(input));
 }
コード例 #8
0
 static public CachedRegex CompileCachedRegexFromPattern(this string pattern)
 {
     return(COMPILE_CACHED_REGEX_FROM_PATTERN.Fetch(pattern));
 }
コード例 #9
0
 public bool IsMatch(string input)
 {
     return(is_match_cache.Fetch(input));
 }
コード例 #10
0
 static public Regex GetReverseRegexByPattern(this string pattern)
 {
     return(GET_REVERSE_REGEX_BY_PATTERN.Fetch(pattern));
 }
コード例 #11
0
 static public Regex CompileReverseRegexFromPattern(this string pattern)
 {
     return(COMPILE_REVERSE_REGEX_FROM_PATTERN.Fetch(pattern));
 }
コード例 #12
0
 static public BasicType GetBasicType(this Type item)
 {
     return(GET_BASIC_TYPE.Fetch(item));
 }
コード例 #13
0
 static public string GetId()
 {
     return(GET_ID.Fetch());
 }
コード例 #14
0
 static public EnumInfo GetEnumInfo(Type type)
 {
     return(GET_ENUM_INFO.Fetch(type));
 }
コード例 #15
0
 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));
 }
コード例 #16
0
 public Match Match(string input)
 {
     return(match_cache.Fetch(input));
 }
コード例 #17
0
 static public string GetString(int level)
 {
     return(GET_STRING.Fetch(level));
 }
コード例 #18
0
 static public Assembly GetAssembly(this AssemblyName item)
 {
     return(GET_ASSEMBLY.Fetch(item.GetSimpleName()));
 }