From: Roger Meier Date: Sun, 17 Jul 2011 14:47:48 +0000 (+0000) Subject: THRIFT-1230 C# Library -- THashSet is not marked as Serializable which makes all... X-Git-Tag: 0.7.0~26 X-Git-Url: https://source.supwisdom.com/gerrit/gitweb?a=commitdiff_plain;h=1e20e9f589f7a79b1e355c75fb66b44cdf512fc4;p=common%2Fthrift.git THRIFT-1230 C# Library -- THashSet is not marked as Serializable which makes all Thrift classes that uses it unserializable Patch: Maciek Weksej git-svn-id: https://svn.apache.org/repos/asf/thrift/trunk@1147643 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/lib/csharp/src/Collections/THashSet.cs b/lib/csharp/src/Collections/THashSet.cs index a9957693..0ddea549 100644 --- a/lib/csharp/src/Collections/THashSet.cs +++ b/lib/csharp/src/Collections/THashSet.cs @@ -23,6 +23,7 @@ using System.Collections.Generic; namespace Thrift.Collections { + [Serializable] public class THashSet : ICollection { #if NET_2_0