[corlib] Parse datetime string using culture calendar. Fixes #18052
[mono.git] / mcs / class / corlib / System.Diagnostics.SymbolStore / ISymbolScope.cs
index 6c922fe59588761a9030277747dc1d6c42a16928..75559340d42d8bb8036fa4616a17ba97a040c6af 100644 (file)
 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 //
 
+using System.Runtime.InteropServices;
+
 namespace System.Diagnostics.SymbolStore
 {
+       [ComVisible (true)]
+       public interface ISymbolScope {
+               int EndOffset {get ;}
+               ISymbolMethod Method {get; }
+               ISymbolScope Parent {get ;}
+               int StartOffset {get ;}
 
-public interface ISymbolScope {
-
-       int EndOffset {get ;}
-       ISymbolMethod Method {get; }
-       ISymbolScope Parent {get ;}
-       int StartOffset {get ;}
-
-       ISymbolScope[] GetChildren ();
-       ISymbolVariable[] GetLocals ();
-       ISymbolNamespace[] GetNamespaces ();
-
-}
-
+               ISymbolScope[] GetChildren ();
+               ISymbolVariable[] GetLocals ();
+               ISymbolNamespace[] GetNamespaces ();
+       }
 }