Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / CompMod / System / CodeDOM / CodeLinePragma.cs / 1305376 / CodeLinePragma.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 CodeLinePragma { private string fileName; private int lineNumber; public CodeLinePragma() { } ////// Represents line number information for an external file. /// ////// public CodeLinePragma(string fileName, int lineNumber) { FileName = fileName; LineNumber = lineNumber; } ////// Initializes a new instance of ///. /// /// public string FileName { get { return (fileName == null) ? string.Empty : fileName; } set { fileName = value; } } ////// Gets or sets /// the filename of /// the associated file. /// ////// public int LineNumber { get { return lineNumber; } set { lineNumber = value; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ ///// Gets or sets the line number of the file for /// the current pragma. /// ///// // //----------------------------------------------------------------------------- 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 CodeLinePragma { private string fileName; private int lineNumber; public CodeLinePragma() { } ////// Represents line number information for an external file. /// ////// public CodeLinePragma(string fileName, int lineNumber) { FileName = fileName; LineNumber = lineNumber; } ////// Initializes a new instance of ///. /// /// public string FileName { get { return (fileName == null) ? string.Empty : fileName; } set { fileName = value; } } ////// Gets or sets /// the filename of /// the associated file. /// ////// public int LineNumber { get { return lineNumber; } set { lineNumber = value; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007./// Gets or sets the line number of the file for /// the current pragma. /// ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- AccessText.cs
- BaseCodePageEncoding.cs
- XsltException.cs
- HttpCacheParams.cs
- ToolStripManager.cs
- EncodingDataItem.cs
- FactoryId.cs
- BaseDataListActionList.cs
- TransformGroup.cs
- InputBuffer.cs
- Debugger.cs
- SessionSwitchEventArgs.cs
- HwndSubclass.cs
- jithelpers.cs
- EditorPartCollection.cs
- TemplateBindingExtension.cs
- ToolStripContentPanelRenderEventArgs.cs
- ValidatingReaderNodeData.cs
- MenuItemCollection.cs
- PkcsUtils.cs
- SelectionManager.cs
- ZipFileInfo.cs
- DesignerToolboxInfo.cs
- ECDiffieHellman.cs
- SelectionRangeConverter.cs
- FixedNode.cs
- TemplateBamlRecordReader.cs
- Condition.cs
- WebPartConnectionsCancelEventArgs.cs
- Viewport3DAutomationPeer.cs
- Ticks.cs
- AddIn.cs
- StorageAssociationTypeMapping.cs
- NetworkCredential.cs
- XmlNode.cs
- Lasso.cs
- IQueryable.cs
- Pen.cs
- ContainerUIElement3D.cs
- XmlBaseWriter.cs
- DES.cs
- Stacktrace.cs
- EventItfInfo.cs
- HighlightVisual.cs
- PluralizationService.cs
- CompositeActivityCodeGenerator.cs
- WinEventQueueItem.cs
- NegationPusher.cs
- HttpCookie.cs
- VisualStyleElement.cs
- CmsInterop.cs
- MailBnfHelper.cs
- MetadataUtil.cs
- IFlowDocumentViewer.cs
- ChildDocumentBlock.cs
- AssemblyResolver.cs
- CodeDirectoryCompiler.cs
- Part.cs
- Keywords.cs
- xdrvalidator.cs
- DependencyObjectType.cs
- TypefaceCollection.cs
- CompilerErrorCollection.cs
- XPathAncestorQuery.cs
- IsolatedStorage.cs
- RemoteWebConfigurationHostServer.cs
- SchemaSetCompiler.cs
- PackageFilter.cs
- GridViewSelectEventArgs.cs
- RectAnimation.cs
- CreateUserWizardAutoFormat.cs
- IndicFontClient.cs
- Soap.cs
- _FtpControlStream.cs
- PersonalizationEntry.cs
- StickyNoteContentControl.cs
- NeedSkipTokenVisitor.cs
- SchemaTableOptionalColumn.cs
- EndEvent.cs
- CustomAttributeSerializer.cs
- GroupLabel.cs
- ProfileInfo.cs
- SamlAssertionKeyIdentifierClause.cs
- SqlFacetAttribute.cs
- StatusBarPanel.cs
- ProfileEventArgs.cs
- DataGridAddNewRow.cs
- SqlBulkCopyColumnMappingCollection.cs
- Substitution.cs
- AuthenticatedStream.cs
- IconHelper.cs
- ExecutionPropertyManager.cs
- CultureSpecificStringDictionary.cs
- ComponentEditorPage.cs
- WebEventCodes.cs
- SchemaMapping.cs
- ModelVisual3D.cs
- DataGridViewDataErrorEventArgs.cs
- ISessionStateStore.cs
- QuotedPairReader.cs