Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / CompMod / System / CodeDOM / CodeCommentStatement.cs / 1 / CodeCommentStatement.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.CodeDom { using System.Diagnostics; using System; using Microsoft.Win32; using System.Collections; using System.Runtime.InteropServices; ////// [ 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; } } } }[To be supplied.] ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- XmlTextWriter.cs
- XPathAncestorIterator.cs
- AutoGeneratedField.cs
- EntityDataSourceReferenceGroup.cs
- ResourceManager.cs
- EdmToObjectNamespaceMap.cs
- ReflectionServiceProvider.cs
- CompareInfo.cs
- Int32Converter.cs
- ConnectionStringsExpressionBuilder.cs
- CodeDirectiveCollection.cs
- UpdateTranslator.cs
- SchemaTableColumn.cs
- DataGridRowHeader.cs
- SiteMapPathDesigner.cs
- TableRowCollection.cs
- SHA1.cs
- WindowsTitleBar.cs
- DisplayNameAttribute.cs
- ElementUtil.cs
- SerializationException.cs
- HttpResponseBase.cs
- RenderData.cs
- BuildProviderUtils.cs
- TextServicesDisplayAttribute.cs
- Helpers.cs
- RolePrincipal.cs
- ControlType.cs
- TriState.cs
- WorkflowWebHostingModule.cs
- SingleTagSectionHandler.cs
- StylusPointCollection.cs
- Missing.cs
- EditorZone.cs
- NeutralResourcesLanguageAttribute.cs
- MenuEventArgs.cs
- TokenBasedSetEnumerator.cs
- WebPartDescriptionCollection.cs
- ImageMetadata.cs
- TriggerCollection.cs
- HandlerFactoryWrapper.cs
- XmlNode.cs
- MyContact.cs
- MergablePropertyAttribute.cs
- Ref.cs
- WinEventHandler.cs
- FilteredXmlReader.cs
- WinInetCache.cs
- XhtmlConformanceSection.cs
- odbcmetadatacollectionnames.cs
- PTConverter.cs
- DataServiceRequestException.cs
- PropertyConverter.cs
- ServiceAuthorizationElement.cs
- PreviewPrintController.cs
- mediaeventargs.cs
- RectangleGeometry.cs
- ClientUtils.cs
- SystemIPGlobalProperties.cs
- XmlSubtreeReader.cs
- ToolTipService.cs
- ContextBase.cs
- TextPenaltyModule.cs
- RawStylusSystemGestureInputReport.cs
- ReliableReplySessionChannel.cs
- ProcessManager.cs
- XmlSchemaAnnotated.cs
- StringFunctions.cs
- AnonymousIdentificationSection.cs
- printdlgexmarshaler.cs
- PropertyToken.cs
- ErrorStyle.cs
- ByteRangeDownloader.cs
- Constraint.cs
- SafeNativeMethods.cs
- StatusBarPanel.cs
- SynthesizerStateChangedEventArgs.cs
- PropertyRef.cs
- CombinedGeometry.cs
- PointCollectionConverter.cs
- SQLConvert.cs
- SqlDataSourceCommandEventArgs.cs
- XmlSubtreeReader.cs
- RelatedImageListAttribute.cs
- WindowCollection.cs
- WebControlParameterProxy.cs
- ParentQuery.cs
- StoreContentChangedEventArgs.cs
- FlagsAttribute.cs
- ExplicitDiscriminatorMap.cs
- WebPartTracker.cs
- KeyboardEventArgs.cs
- ProfilePropertyNameValidator.cs
- HwndSource.cs
- ConnectionStringsExpressionBuilder.cs
- XmlExtensionFunction.cs
- _NetworkingPerfCounters.cs
- PersistNameAttribute.cs
- ExternalException.cs
- SqlClientMetaDataCollectionNames.cs