You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
278 B

4 years ago
  1. #if MYSQL_6_10
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. namespace Externals.MySql.Data
  7. {
  8. #if NET40
  9. internal static class NET40
  10. {
  11. public static Type GetTypeInfo(this Type type)
  12. {
  13. return type;
  14. }
  15. }
  16. #endif
  17. }
  18. #endif