Remove ComVisible as per #9371 (#9962)
authorPaul Westcott <p.westcott@gmail.com>
Sun, 5 Mar 2017 05:32:12 +0000 (16:32 +1100)
committerJan Kotas <jkotas@microsoft.com>
Sun, 5 Mar 2017 05:32:12 +0000 (21:32 -0800)
When lazy was merged, this change was lost.

src/mscorlib/shared/System/Lazy.cs

index d59f678..46a019f 100644 (file)
@@ -183,7 +183,6 @@ namespace System
     /// </para>
     /// </remarks>
     [Serializable]
-    [ComVisible(false)]
     [DebuggerTypeProxy(typeof(System_LazyDebugView<>))]
     [DebuggerDisplay("ThreadSafetyMode={Mode}, IsValueCreated={IsValueCreated}, IsValueFaulted={IsValueFaulted}, Value={ValueForDebugDisplay}")]
     public class Lazy<T>