Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Baulig <martin@novell.com>2005-09-05 19:03:33 +0400
committerMartin Baulig <martin@novell.com>2005-09-05 19:03:33 +0400
commitf5908bb29972ce75a4c59abce39b3082fdbd64d4 (patch)
tree5895bad756efbeae56776ffc942e2956ccd61dc8 /mcs/class/Mono.C5
parent67882e23fafe4e75b9076320c9438f4abd90a95a (diff)
Reflect latest generics API changes in the August CTP.
svn path=/trunk/mcs/; revision=49476
Diffstat (limited to 'mcs/class/Mono.C5')
-rw-r--r--mcs/class/Mono.C5/Builder.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/mcs/class/Mono.C5/Builder.cs b/mcs/class/Mono.C5/Builder.cs
index a4ad1080365..feb2981baed 100644
--- a/mcs/class/Mono.C5/Builder.cs
+++ b/mcs/class/Mono.C5/Builder.cs
@@ -161,7 +161,7 @@ namespace C5.HasherBuilder
{
Type t = typeof(T);
- if (!t.HasGenericArguments)
+ if (!t.IsGenericType)
{
if (t.Equals(typeof(int)))
return (IHasher<T>)(new IntHasher());