From 1e20e9f589f7a79b1e355c75fb66b44cdf512fc4 Mon Sep 17 00:00:00 2001 From: Roger Meier Date: Sun, 17 Jul 2011 14:47:48 +0000 Subject: [PATCH] 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 --- lib/csharp/src/Collections/THashSet.cs | 1 + 1 file changed, 1 insertion(+) 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 -- 2.17.1