예제 #1
0
        public bool TryGetNativeType(string typeName, out Type nativeType)
        {
            if (string.IsNullOrEmpty(typeName))
            {
                throw new ArgumentNullException(nameof(typeName));
            }

            return(_types.TryGetNativeType(typeName, out nativeType));
        }
예제 #2
0
 internal bool TryGetNativeType(string typeName, out Type nativeType)
 {
     return(_types.TryGetNativeType(typeName, out nativeType));
 }