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
- SqlAliaser.cs
- StyleTypedPropertyAttribute.cs
- ControlAdapter.cs
- FieldMetadata.cs
- EffectiveValueEntry.cs
- ConfigurationLocationCollection.cs
- XmlDocumentFragment.cs
- PassportAuthenticationEventArgs.cs
- EventPropertyMap.cs
- ThumbButtonInfo.cs
- ClientSettingsProvider.cs
- CounterCreationData.cs
- Bits.cs
- SocketElement.cs
- XslTransform.cs
- ChineseLunisolarCalendar.cs
- CurrentChangingEventManager.cs
- SchemaInfo.cs
- CodeBlockBuilder.cs
- SqlCacheDependencySection.cs
- Compiler.cs
- BooleanProjectedSlot.cs
- DocumentReference.cs
- EventSinkHelperWriter.cs
- TypeSystem.cs
- ToolboxDataAttribute.cs
- QuaternionValueSerializer.cs
- XamlGridLengthSerializer.cs
- Decimal.cs
- XPathBinder.cs
- AlternationConverter.cs
- _ContextAwareResult.cs
- DBSchemaTable.cs
- RegexMatch.cs
- DataBinder.cs
- TextSelectionHighlightLayer.cs
- NegotiationTokenProvider.cs
- ObjectView.cs
- TextRunProperties.cs
- TextServicesLoader.cs
- QilTypeChecker.cs
- PeerNameRecordCollection.cs
- BCryptHashAlgorithm.cs
- AggregateNode.cs
- ServiceModelSecurityTokenRequirement.cs
- ExpressionContext.cs
- WebPartDisplayModeCancelEventArgs.cs
- WebPartDescriptionCollection.cs
- WrappedIUnknown.cs
- mansign.cs
- DisplayMemberTemplateSelector.cs
- DefaultDialogButtons.cs
- WCFModelStrings.Designer.cs
- ObjectDisposedException.cs
- PictureBox.cs
- ChannelManagerBase.cs
- CreatingCookieEventArgs.cs
- DataGridViewBand.cs
- ColumnMapProcessor.cs
- DecimalKeyFrameCollection.cs
- ComponentEditorForm.cs
- UnknownBitmapDecoder.cs
- ArrayConverter.cs
- AlgoModule.cs
- XmlDataProvider.cs
- MergeLocalizationDirectives.cs
- InvalidOperationException.cs
- MemoryMappedViewStream.cs
- Hashtable.cs
- RoutedEvent.cs
- GetChildSubtree.cs
- BindingContext.cs
- SQLByte.cs
- MouseBinding.cs
- ServiceParser.cs
- TextTreeDeleteContentUndoUnit.cs
- ProtocolsConfigurationHandler.cs
- SafeReadContext.cs
- TemplatePropertyEntry.cs
- ClassDataContract.cs
- AdRotatorDesigner.cs
- TreeViewImageKeyConverter.cs
- ObjectListItem.cs
- HttpGetProtocolReflector.cs
- KnownTypesProvider.cs
- TrueReadOnlyCollection.cs
- VideoDrawing.cs
- ReadOnlyCollectionBase.cs
- RowToFieldTransformer.cs
- FormViewPageEventArgs.cs
- DataGridViewComboBoxColumn.cs
- ModuleBuilderData.cs
- ObjectSet.cs
- Helper.cs
- DataViewSetting.cs
- DrawingContextWalker.cs
- SendKeys.cs
- RowVisual.cs
- StandardOleMarshalObject.cs
- XmlSchemaAnnotated.cs