Commit fc00955b authored by Marc Gravell's avatar Marc Gravell

Merge pull request #329 from jeremymeng/typecode_fix

GetTypeCode() extension method bug fix
parents 5e94e688 26351d44
......@@ -753,7 +753,7 @@ internal static TypeCode GetTypeCode(this Type type)
#else
internal static TypeCode GetTypeCode(this Type type)
{
return type.GetTypeCode();
return Type.GetTypeCode(type);
}
#endif
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment