Code:
/ 4.0 / 4.0 / untmp / 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.] ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- PartialList.cs
- ChannelServices.cs
- QilStrConcat.cs
- ProviderSettings.cs
- RequestResizeEvent.cs
- DataControlFieldCell.cs
- PrtCap_Reader.cs
- CapabilitiesPattern.cs
- SystemInformation.cs
- InfoCardBinaryReader.cs
- StartUpEventArgs.cs
- ViewStateException.cs
- RepeatButton.cs
- LoadMessageLogger.cs
- SqlClientFactory.cs
- CatalogZone.cs
- Errors.cs
- XmlILStorageConverter.cs
- NonParentingControl.cs
- ProviderIncompatibleException.cs
- assertwrapper.cs
- TableCellAutomationPeer.cs
- OleDbDataAdapter.cs
- Environment.cs
- TimelineClockCollection.cs
- ScaleTransform3D.cs
- IsolatedStorageFilePermission.cs
- TextEffectResolver.cs
- InterleavedZipPartStream.cs
- Int64Converter.cs
- ButtonPopupAdapter.cs
- AsnEncodedData.cs
- Perspective.cs
- XPathSelfQuery.cs
- PropertyMappingExceptionEventArgs.cs
- Socket.cs
- WeakReferenceKey.cs
- DriveInfo.cs
- ExpressionPrefixAttribute.cs
- FileLogRecordHeader.cs
- PlatformNotSupportedException.cs
- DataPagerFieldCommandEventArgs.cs
- InvalidCastException.cs
- Object.cs
- ControlParser.cs
- HttpInputStream.cs
- FileRecordSequence.cs
- BitmapEffectGeneralTransform.cs
- ReliableReplySessionChannel.cs
- ScaleTransform.cs
- DefaultTextStore.cs
- Crc32Helper.cs
- ClientBuildManagerCallback.cs
- GifBitmapDecoder.cs
- StylusSystemGestureEventArgs.cs
- CLSCompliantAttribute.cs
- Int32EqualityComparer.cs
- AuthenticateEventArgs.cs
- ListViewHitTestInfo.cs
- SerializationInfo.cs
- InvalidProgramException.cs
- ComboBoxRenderer.cs
- ToggleProviderWrapper.cs
- thaishape.cs
- TypeSystem.cs
- RawMouseInputReport.cs
- EventListenerClientSide.cs
- Hashtable.cs
- DependencyObjectType.cs
- MeshGeometry3D.cs
- EntityDataSourceDesignerHelper.cs
- MsdtcClusterUtils.cs
- RegistryPermission.cs
- UrlRoutingModule.cs
- CompressionTransform.cs
- BindingList.cs
- PreservationFileReader.cs
- SiteOfOriginPart.cs
- SqlDataSourceStatusEventArgs.cs
- RectConverter.cs
- RectIndependentAnimationStorage.cs
- TableRowCollection.cs
- Rect3DValueSerializer.cs
- ClientTarget.cs
- Form.cs
- CutCopyPasteHelper.cs
- ManagementOptions.cs
- ProfessionalColors.cs
- Scene3D.cs
- BindingExpression.cs
- VirtualPathExtension.cs
- MapPathBasedVirtualPathProvider.cs
- XmlArrayAttribute.cs
- GridItemPattern.cs
- PaperSize.cs
- XmlDataSource.cs
- CaseInsensitiveComparer.cs
- DesignerView.cs
- ProviderUtil.cs
- SkipQueryOptionExpression.cs