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!

CodeGenerator.GenerateCommentStatement

Generates code for the specified CodeDOM based comment statement representation.

[Visual Basic]
MustOverride Protected Sub GenerateCommentStatement( _
   ByVal e As CodeCommentStatement _
)
[C#]
protected abstract void GenerateCommentStatement(
   CodeCommentStatement e
);
[C++]
protected: virtual void GenerateCommentStatement(
   CodeCommentStatement* e
) = 0;
[JScript]
protected abstract function GenerateCommentStatement(
   e : CodeCommentStatement
);

Parameters

e
A CodeCommentStatement that indicates the statement to generate code for.

See Also

CodeGenerator Class | CodeGenerator Members | System.CodeDOM.Compiler Namespace | CodeCommentStatement