Merge pull request #409 from Alkarex/patch-1
[mono.git] / mcs / class / corlib / System / SerializableAttribute.cs
index 3e26c930da1bcf5163aa535aa4834290e1575ca3..cfbb7669001cf6a6e59a03fd54155bae98b2d6fa 100644 (file)
@@ -29,6 +29,7 @@
 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 //
+using System.Runtime.InteropServices;
 
 namespace System
 {
@@ -55,7 +56,8 @@ namespace System
 
        [AttributeUsage(AttributeTargets.Class | AttributeTargets.Struct 
                | AttributeTargets.Enum | AttributeTargets.Delegate, 
-               Inherited=false, AllowMultiple=false)]
+               Inherited=false)]
+       [ComVisible (true)]
        public sealed class SerializableAttribute : Attribute
        {
        }