Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / CompMod / System / CodeDOM / CodeCommentStatement.cs / 1305376 / CodeCommentStatement.cs
//------------------------------------------------------------------------------ //// // //----------------------------------------------------------------------------- namespace System.CodeDom { using System.Diagnostics; using System; using Microsoft.Win32; using System.Collections; using System.Runtime.InteropServices; ///[....] // Copyright (c) Microsoft Corporation. All rights reserved. ///// [ ClassInterface(ClassInterfaceType.AutoDispatch), ComVisible(true), Serializable, ] public class CodeCommentStatement : CodeStatement { private CodeComment comment; ///Represents a comment. ////// public CodeCommentStatement() { } ////// Initializes a new instance of ///. /// /// public CodeCommentStatement(CodeComment comment) { this.comment = comment; } ///[To be supplied.] ////// public CodeCommentStatement(string text) { comment = new CodeComment(text); } ////// Initializes a new instance of ///with the specified text as /// contents. /// /// public CodeCommentStatement(string text, bool docComment) { comment = new CodeComment(text, docComment); } ///[To be supplied.] ////// public CodeComment Comment { get { return comment; } set { comment = value; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //[To be supplied.] ///// // //----------------------------------------------------------------------------- namespace System.CodeDom { using System.Diagnostics; using System; using Microsoft.Win32; using System.Collections; using System.Runtime.InteropServices; ///[....] // Copyright (c) Microsoft Corporation. All rights reserved. ///// [ ClassInterface(ClassInterfaceType.AutoDispatch), ComVisible(true), Serializable, ] public class CodeCommentStatement : CodeStatement { private CodeComment comment; ///Represents a comment. ////// public CodeCommentStatement() { } ////// Initializes a new instance of ///. /// /// public CodeCommentStatement(CodeComment comment) { this.comment = comment; } ///[To be supplied.] ////// public CodeCommentStatement(string text) { comment = new CodeComment(text); } ////// Initializes a new instance of ///with the specified text as /// contents. /// /// public CodeCommentStatement(string text, bool docComment) { comment = new CodeComment(text, docComment); } ///[To be supplied.] ////// public CodeComment Comment { get { return comment; } set { comment = value; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.[To be supplied.] ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- FormViewRow.cs
- FocusTracker.cs
- CustomLineCap.cs
- SimpleApplicationHost.cs
- AllowedAudienceUriElement.cs
- ServerValidateEventArgs.cs
- OLEDB_Enum.cs
- SortedList.cs
- CorrelationRequestContext.cs
- Point3DCollection.cs
- RepeaterCommandEventArgs.cs
- GridViewRowEventArgs.cs
- EnumMember.cs
- EntitySqlException.cs
- PeerNameRecord.cs
- Empty.cs
- CodeIterationStatement.cs
- dtdvalidator.cs
- DeflateStream.cs
- CngProperty.cs
- BufferedReadStream.cs
- ListViewGroupCollectionEditor.cs
- TypeNameConverter.cs
- SupportingTokenListenerFactory.cs
- DragEvent.cs
- DependencyObjectType.cs
- DbProviderFactoriesConfigurationHandler.cs
- MultiAsyncResult.cs
- MessageQueueAccessControlEntry.cs
- XmlSchemaGroup.cs
- TimerEventSubscription.cs
- EntityContainerEmitter.cs
- LinkButton.cs
- CapabilitiesPattern.cs
- TrueReadOnlyCollection.cs
- ListView.cs
- RuntimeHelpers.cs
- ReadOnlyTernaryTree.cs
- HttpModuleAction.cs
- Int32Collection.cs
- Schema.cs
- cache.cs
- LockCookie.cs
- SoapExtensionTypeElement.cs
- CryptoKeySecurity.cs
- GridItem.cs
- SizeConverter.cs
- ColumnResizeAdorner.cs
- SpeechDetectedEventArgs.cs
- ActiveXSite.cs
- DrawingAttributes.cs
- TimeSpan.cs
- BinaryObjectWriter.cs
- ValueQuery.cs
- WindowsTokenRoleProvider.cs
- WebServiceReceive.cs
- AbandonedMutexException.cs
- ClonableStack.cs
- WebServiceData.cs
- XmlUtf8RawTextWriter.cs
- NonClientArea.cs
- BamlRecords.cs
- HtmlTitle.cs
- SR.cs
- ConfigXmlWhitespace.cs
- HttpHandlerActionCollection.cs
- HttpModulesInstallComponent.cs
- AmbientValueAttribute.cs
- FileAuthorizationModule.cs
- FixedTextPointer.cs
- httpstaticobjectscollection.cs
- SystemTcpStatistics.cs
- DataControlLinkButton.cs
- Identity.cs
- PostBackOptions.cs
- XmlFileEditor.cs
- TypeResolvingOptions.cs
- ClientUtils.cs
- SyndicationSerializer.cs
- TextServicesCompartment.cs
- ChangeTracker.cs
- ConstraintConverter.cs
- filewebrequest.cs
- LightweightCodeGenerator.cs
- LabelTarget.cs
- Link.cs
- IntSecurity.cs
- SchemaImporterExtensionElementCollection.cs
- ErrorFormatterPage.cs
- ServiceXNameTypeConverter.cs
- Int64Animation.cs
- StorageEntityContainerMapping.cs
- DesignTimeParseData.cs
- XmlSchemaElement.cs
- EntityCollection.cs
- CodeArrayIndexerExpression.cs
- ViewCellRelation.cs
- PlaceHolder.cs
- PlatformNotSupportedException.cs
- NotifyInputEventArgs.cs