NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

ISymbolWriter.OpenNamespace

Opens a new namespace.

[Visual Basic]
Sub OpenNamespace( _
   ByVal name As String _
)
[C#]
void OpenNamespace(
   string name
);
[C++]
void OpenNamespace(
   String* name
) = 0;
[JScript]
function OpenNamespace(
   name : String
);

Parameters

name
The name of the new namespace.

Remarks

Call this before defining methods or variables that live within a namespace. Namespaces can be nested.

See Also

ISymbolWriter Interface | ISymbolWriter Members | System.Diagnostics.SymbolStore Namespace