aboutsummaryrefslogtreecommitdiff
path: root/csharp/src/Google.Protobuf/Compatibility/TypeExtensions.cs
diff options
context:
space:
mode:
authordetlevschwabe <detlev.schwabe@gmail.com>2016-06-27 22:31:42 -0700
committerJon Skeet <skeet@pobox.com>2016-06-28 06:31:42 +0100
commitdc0aeaa9030bdac264b44d56d07b6839a1ae94e9 (patch)
tree4c2fa16988a67942b15307b8da9fd0e1f3994a99 /csharp/src/Google.Protobuf/Compatibility/TypeExtensions.cs
parent7b5648ca98b6bde2b18db109bdf020944e0b7baa (diff)
downloadprotobuf-dc0aeaa9030bdac264b44d56d07b6839a1ae94e9.tar.gz
protobuf-dc0aeaa9030bdac264b44d56d07b6839a1ae94e9.tar.bz2
protobuf-dc0aeaa9030bdac264b44d56d07b6839a1ae94e9.zip
Adding conditional compiler symbol to support .NET 3.5 (#1713)
* Adding condition compiler symbol to support .NET 3.5
Diffstat (limited to 'csharp/src/Google.Protobuf/Compatibility/TypeExtensions.cs')
-rw-r--r--csharp/src/Google.Protobuf/Compatibility/TypeExtensions.cs6
1 files changed, 6 insertions, 0 deletions
diff --git a/csharp/src/Google.Protobuf/Compatibility/TypeExtensions.cs b/csharp/src/Google.Protobuf/Compatibility/TypeExtensions.cs
index 762a29eb..fe9cda8d 100644
--- a/csharp/src/Google.Protobuf/Compatibility/TypeExtensions.cs
+++ b/csharp/src/Google.Protobuf/Compatibility/TypeExtensions.cs
@@ -49,6 +49,11 @@ namespace Google.Protobuf.Compatibility
/// Returns true if the target type is a value type, including a nullable value type or an enum, or false
/// if it's a reference type (class, delegate, interface - including System.ValueType and System.Enum).
/// </summary>
+#if DOTNET35
+ internal static bool IsValueType(this Type target) {
+ return target.IsValueType;
+ }
+#else
internal static bool IsValueType(this Type target)
{
return target.GetTypeInfo().IsValueType;
@@ -109,5 +114,6 @@ namespace Google.Protobuf.Compatibility
}
return null;
}
+#endif
}
}