Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / CompMod / System / CodeDOM / CodeComment.cs / 1305376 / CodeComment.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 CodeComment : CodeObject { private string text; private bool docComment = false; ///Represents a comment. ////// public CodeComment() { } ////// Initializes a new instance of ///. /// /// public CodeComment(string text) { Text = text; } ////// Initializes a new instance of ///with the specified text as /// contents. /// /// public CodeComment(string text, bool docComment) { Text = text; this.docComment = docComment; } ///[To be supplied.] ////// public bool DocComment { get { return docComment; } set { docComment = value; } } ///[To be supplied.] ////// public string Text { get { return (text == null) ? string.Empty : text; } set { text = value; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007./// Gets or setes /// the text of the comment. /// ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- SlotInfo.cs
- ArglessEventHandlerProxy.cs
- TableCell.cs
- BinHexEncoding.cs
- SystemNetworkInterface.cs
- TypeConverter.cs
- FormViewPageEventArgs.cs
- HttpDateParse.cs
- XsdDataContractExporter.cs
- DataSetMappper.cs
- SqlServices.cs
- CodeSnippetExpression.cs
- BrowserPolicyValidator.cs
- PathSegment.cs
- MetadataPropertyCollection.cs
- DES.cs
- TableLayoutPanelBehavior.cs
- ArrayTypeMismatchException.cs
- DataGridViewLayoutData.cs
- SignHashRequest.cs
- Regex.cs
- FormViewUpdateEventArgs.cs
- ParserHooks.cs
- BindingManagerDataErrorEventArgs.cs
- ManagementObjectCollection.cs
- Byte.cs
- DebugView.cs
- AssemblyBuilder.cs
- ChannelSettingsElement.cs
- ProxyManager.cs
- Package.cs
- Rfc4050KeyFormatter.cs
- _ShellExpression.cs
- Thickness.cs
- MouseGestureConverter.cs
- MediaTimeline.cs
- RightsManagementLicense.cs
- Int64AnimationUsingKeyFrames.cs
- ControlCommandSet.cs
- QilLiteral.cs
- ContextBase.cs
- BooleanConverter.cs
- Model3D.cs
- ChangeInterceptorAttribute.cs
- TypeUtil.cs
- SettingsPropertyValueCollection.cs
- TabPanel.cs
- ImageCodecInfo.cs
- Wizard.cs
- parserscommon.cs
- CompositeCollection.cs
- XsltOutput.cs
- COSERVERINFO.cs
- NamedObject.cs
- ByteStreamMessageEncodingElement.cs
- PlanCompiler.cs
- CurrencyWrapper.cs
- RunWorkerCompletedEventArgs.cs
- safelink.cs
- OletxVolatileEnlistment.cs
- HitTestDrawingContextWalker.cs
- InkCollectionBehavior.cs
- SessionPageStatePersister.cs
- BufferedGraphicsContext.cs
- ThumbAutomationPeer.cs
- DSASignatureFormatter.cs
- TrackBarRenderer.cs
- UrlPath.cs
- SelectionHighlightInfo.cs
- ButtonAutomationPeer.cs
- LinqDataSourceView.cs
- IntSecurity.cs
- RadioButtonBaseAdapter.cs
- Oid.cs
- RtfToken.cs
- PermissionListSet.cs
- StorageTypeMapping.cs
- ContractValidationHelper.cs
- CalendarModeChangedEventArgs.cs
- SQLChars.cs
- TextPenaltyModule.cs
- ToolboxItemFilterAttribute.cs
- TransformerInfoCollection.cs
- XPathItem.cs
- CharacterString.cs
- ChannelManager.cs
- MatchAttribute.cs
- ResolvedKeyFrameEntry.cs
- LineServicesCallbacks.cs
- Selector.cs
- HMACSHA512.cs
- CommandValueSerializer.cs
- ProtectedConfigurationProviderCollection.cs
- WsdlHelpGeneratorElement.cs
- ToolStripDesignerAvailabilityAttribute.cs
- OnOperation.cs
- OdbcCommand.cs
- ButtonStandardAdapter.cs
- ParameterCollection.cs
- HttpCapabilitiesSectionHandler.cs