| File: System\CodeDom\CodeCommentStatement.cs | Web Access |
| Project: src\runtime\src\libraries\System.CodeDom\src\System.CodeDom.csproj (System.CodeDom) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. namespace System.CodeDom { public class CodeCommentStatement : CodeStatement { public CodeCommentStatement() { } public CodeCommentStatement(CodeComment comment) { Comment = comment; } public CodeCommentStatement(string text) { Comment = new CodeComment(text); } public CodeCommentStatement(string text, bool docComment) { Comment = new CodeComment(text, docComment); } public CodeComment Comment { get; set; } } }