summaryrefslogtreecommitdiff
path: root/WorldlineKeepers/Assets/Standard Assets/LitJson/Netstandard15Polyfill.cs
diff options
context:
space:
mode:
authorchai <215380520@qq.com>2023-05-30 14:27:59 +0800
committerchai <215380520@qq.com>2023-05-30 14:27:59 +0800
commit2fcb4625389b1594bbefdbaf2e038b2cfffa8ead (patch)
tree87f57dbfdaf3d11ebf33869b76f12cc475c9a033 /WorldlineKeepers/Assets/Standard Assets/LitJson/Netstandard15Polyfill.cs
parent38e177b0fdf130d6a361ab51c80b5b56ee83f28e (diff)
+ json extends
Diffstat (limited to 'WorldlineKeepers/Assets/Standard Assets/LitJson/Netstandard15Polyfill.cs')
-rw-r--r--WorldlineKeepers/Assets/Standard Assets/LitJson/Netstandard15Polyfill.cs24
1 files changed, 0 insertions, 24 deletions
diff --git a/WorldlineKeepers/Assets/Standard Assets/LitJson/Netstandard15Polyfill.cs b/WorldlineKeepers/Assets/Standard Assets/LitJson/Netstandard15Polyfill.cs
deleted file mode 100644
index 55b02a2..0000000
--- a/WorldlineKeepers/Assets/Standard Assets/LitJson/Netstandard15Polyfill.cs
+++ /dev/null
@@ -1,24 +0,0 @@
-#if NETSTANDARD1_5
-using System;
-using System.Reflection;
-namespace LitJson
-{
- internal static class Netstandard15Polyfill
- {
- internal static Type GetInterface(this Type type, string name)
- {
- return type.GetTypeInfo().GetInterface(name);
- }
-
- internal static bool IsClass(this Type type)
- {
- return type.GetTypeInfo().IsClass;
- }
-
- internal static bool IsEnum(this Type type)
- {
- return type.GetTypeInfo().IsEnum;
- }
- }
-}
-#endif \ No newline at end of file