Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / CompMod / System / CodeDOM / CodeLinePragma.cs / 1 / CodeLinePragma.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 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; } } } }/// 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
- InterleavedZipPartStream.cs
- ErrorItem.cs
- DataObjectSettingDataEventArgs.cs
- DataGridViewRowPostPaintEventArgs.cs
- DoubleKeyFrameCollection.cs
- XmlDigitalSignatureProcessor.cs
- HwndKeyboardInputProvider.cs
- SafeCryptHandles.cs
- ProcessModelInfo.cs
- GroupByExpressionRewriter.cs
- DataGridViewCellEventArgs.cs
- SessionEndingEventArgs.cs
- WmfPlaceableFileHeader.cs
- OpenFileDialog.cs
- FontResourceCache.cs
- WebHttpElement.cs
- RegionIterator.cs
- AxWrapperGen.cs
- AnnotationDocumentPaginator.cs
- WebZone.cs
- RsaSecurityToken.cs
- SafeCryptoHandles.cs
- ComponentChangedEvent.cs
- CompilerResults.cs
- Variable.cs
- PropertyEmitter.cs
- WindowsListViewItemCheckBox.cs
- Maps.cs
- StringHandle.cs
- BitmapEffectInputConnector.cs
- SimpleTypesSurrogate.cs
- KeyGesture.cs
- GradientBrush.cs
- HttpRequestWrapper.cs
- RSAOAEPKeyExchangeFormatter.cs
- StateManagedCollection.cs
- AnnotationMap.cs
- DesignerCommandSet.cs
- ProfileGroupSettingsCollection.cs
- FormViewRow.cs
- SoapInteropTypes.cs
- AdornedElementPlaceholder.cs
- AnnotationComponentManager.cs
- Misc.cs
- StateElementCollection.cs
- HwndPanningFeedback.cs
- Button.cs
- ClaimTypes.cs
- OracleMonthSpan.cs
- XmlSerializationWriter.cs
- BaseCodePageEncoding.cs
- PieceDirectory.cs
- SHA512Managed.cs
- SqlXmlStorage.cs
- HostedNamedPipeTransportManager.cs
- Rectangle.cs
- EntityDataSourceWizardForm.cs
- ConfigurationPropertyCollection.cs
- HttpCookie.cs
- HttpRequestCacheValidator.cs
- IPAddress.cs
- ModulesEntry.cs
- MultiView.cs
- SqlClientMetaDataCollectionNames.cs
- DocumentCollection.cs
- listitem.cs
- _SSPISessionCache.cs
- BindingContext.cs
- ImageAutomationPeer.cs
- PasswordBox.cs
- TemplatePagerField.cs
- FixedSOMPage.cs
- iisPickupDirectory.cs
- SmiXetterAccessMap.cs
- TypeDependencyAttribute.cs
- AuthStoreRoleProvider.cs
- ProcessModelInfo.cs
- ToolboxItemFilterAttribute.cs
- BindingExpression.cs
- _ShellExpression.cs
- ListComponentEditor.cs
- ScrollChrome.cs
- DocumentGridPage.cs
- MenuAutomationPeer.cs
- TypeSemantics.cs
- SharedPersonalizationStateInfo.cs
- SqlDataSourceFilteringEventArgs.cs
- SafeNativeMemoryHandle.cs
- FixedPageAutomationPeer.cs
- HyperLinkColumn.cs
- WizardPanelChangingEventArgs.cs
- RawAppCommandInputReport.cs
- TimeoutValidationAttribute.cs
- ActivationServices.cs
- GridViewUpdatedEventArgs.cs
- ParameterCollectionEditorForm.cs
- DocumentSequenceHighlightLayer.cs
- SourceSwitch.cs
- UIElementAutomationPeer.cs
- AssemblyNameProxy.cs