Merge pull request #1109 from adbre/iss358
[mono.git] / mcs / class / corlib / System.Runtime.InteropServices / BestFitMappingAttribute.cs
index 31b506013b2a47ab36a4f165dcdb97413b654ebd..758d35b31d5890c9c76107e4b9f32adb3c22bded 100644 (file)
@@ -36,12 +36,13 @@ namespace System.Runtime.InteropServices {
        [AttributeUsage (AttributeTargets.Assembly | AttributeTargets.Class | 
                         AttributeTargets.Struct | AttributeTargets.Interface,
                         Inherited=false)]
+       [ComVisible (true)]
        public sealed class BestFitMappingAttribute : Attribute {
                bool bfm;
                
-               public BestFitMappingAttribute (bool bfm)
+               public BestFitMappingAttribute (bool BestFitMapping)
                {
-                       this.bfm = bfm;
+                       this.bfm = BestFitMapping;
                }
 
                public bool ThrowOnUnmappableChar = false;