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
- BindableTemplateBuilder.cs
- NaturalLanguageHyphenator.cs
- PassportIdentity.cs
- MessageDecoder.cs
- ProjectionCamera.cs
- DirectoryInfo.cs
- PathParser.cs
- IDictionary.cs
- TargetConverter.cs
- TextParentUndoUnit.cs
- LinqToSqlWrapper.cs
- StateMachineHelpers.cs
- SimpleTextLine.cs
- AssociationType.cs
- SqlHelper.cs
- ColumnMapProcessor.cs
- TemplatePartAttribute.cs
- MembershipUser.cs
- Cursors.cs
- Stack.cs
- Automation.cs
- ListItemParagraph.cs
- Canvas.cs
- QueryInterceptorAttribute.cs
- RectangleConverter.cs
- QilTypeChecker.cs
- TimeZoneInfo.cs
- VirtualPath.cs
- GridViewCellAutomationPeer.cs
- RijndaelManaged.cs
- Button.cs
- SqlProviderServices.cs
- TableAdapterManagerNameHandler.cs
- EncodingStreamWrapper.cs
- XmlCodeExporter.cs
- DivideByZeroException.cs
- ValidationErrorEventArgs.cs
- CompiledQuery.cs
- ManifestResourceInfo.cs
- _FtpDataStream.cs
- TabControl.cs
- ForeignKeyConstraint.cs
- ExtendedPropertyCollection.cs
- InputLangChangeRequestEvent.cs
- FillBehavior.cs
- NumberSubstitution.cs
- OutputCacheSection.cs
- RegistryConfigurationProvider.cs
- XmlMemberMapping.cs
- DataServiceQuery.cs
- WaitHandleCannotBeOpenedException.cs
- XmlSchemaInclude.cs
- NameGenerator.cs
- WebColorConverter.cs
- PropertyMetadata.cs
- CngKeyBlobFormat.cs
- CaseStatement.cs
- Rect.cs
- ToolStripControlHost.cs
- PathSegmentCollection.cs
- ClonableStack.cs
- DataGridHeaderBorder.cs
- EdmTypeAttribute.cs
- __TransparentProxy.cs
- XmlEventCache.cs
- StylusEditingBehavior.cs
- FunctionNode.cs
- DataGridViewAccessibleObject.cs
- SqlComparer.cs
- AnnotationResourceCollection.cs
- StrongNameUtility.cs
- DateBoldEvent.cs
- ExpressionConverter.cs
- TransformCryptoHandle.cs
- AdCreatedEventArgs.cs
- Splitter.cs
- HtmlCalendarAdapter.cs
- LassoSelectionBehavior.cs
- PathGradientBrush.cs
- StringCollectionMarkupSerializer.cs
- WebPartEventArgs.cs
- MSAAWinEventWrap.cs
- Viewport2DVisual3D.cs
- Transform.cs
- SoapCommonClasses.cs
- ParameterBinding.cs
- ReliabilityContractAttribute.cs
- LoginDesignerUtil.cs
- AppDomainProtocolHandler.cs
- FlowDocumentReaderAutomationPeer.cs
- RegexCompiler.cs
- ObsoleteAttribute.cs
- CreateUserWizardStep.cs
- Pointer.cs
- FormViewCommandEventArgs.cs
- CompositeTypefaceMetrics.cs
- ButtonChrome.cs
- ActivityPropertyReference.cs
- TransformConverter.cs
- CheckedPointers.cs