예제 #1
0
 public static bool TryParseType(string prefixedTypeName, XamlNamespaces namespaces, out Type type)
 {
     return(TryParseType(XamlName.FromPrefixedName(prefixedTypeName, namespaces), out type));
 }
예제 #2
0
 public static Type ParseType(string prefixedTypeName, XamlNamespaces namespaces)
 {
     return(ParseType(XamlName.FromPrefixedName(prefixedTypeName, namespaces)));
 }