Switch to compiler-tester
[mono.git] / mcs / class / corlib / System.Reflection / Missing.cs
index 90f366f04a78b9f95927aa2222dbda71b8e1aa17..25dd9533922ec7e76ee1f8b74912e8116888a0a8 100644 (file)
 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 //
 
+using System.Runtime.InteropServices;
+
 namespace System.Reflection
 {
+#if NET_2_0
+       [ComVisible (true)]
+       [Serializable]
+#endif
        public sealed class Missing
        {
-               public static readonly Missing Value;
+               public static readonly Missing Value = new Missing ();
 
                internal Missing () {}
        }