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
- WebBrowserSiteBase.cs
- PriorityBinding.cs
- DiagnosticsConfiguration.cs
- SecurityElement.cs
- FigureHelper.cs
- assemblycache.cs
- DynamicMetaObjectBinder.cs
- EpmSyndicationContentSerializer.cs
- HtmlTableRowCollection.cs
- LoginDesignerUtil.cs
- EntitySqlQueryBuilder.cs
- BooleanSwitch.cs
- TextShapeableCharacters.cs
- CompilationSection.cs
- OracleFactory.cs
- XpsTokenContext.cs
- Size3D.cs
- GenericRootAutomationPeer.cs
- ResourceType.cs
- MonthCalendar.cs
- __Filters.cs
- AsyncCodeActivityContext.cs
- PasswordTextContainer.cs
- SerializationSectionGroup.cs
- BidPrivateBase.cs
- WindowsUserNameSecurityTokenAuthenticator.cs
- PropertySourceInfo.cs
- XmlNamespaceManager.cs
- CaseKeyBox.xaml.cs
- TcpTransportElement.cs
- ObjectSecurityT.cs
- x509store.cs
- PropertyPathWorker.cs
- BitVector32.cs
- XamlHostingConfiguration.cs
- Line.cs
- SerializableAttribute.cs
- Converter.cs
- DomNameTable.cs
- ServiceThrottlingBehavior.cs
- WeakReferenceEnumerator.cs
- Point3DValueSerializer.cs
- BaseParagraph.cs
- LingerOption.cs
- UserPreference.cs
- SqlLiftIndependentRowExpressions.cs
- PageParserFilter.cs
- Method.cs
- InternalsVisibleToAttribute.cs
- UiaCoreApi.cs
- GlobalizationAssembly.cs
- Guid.cs
- StagingAreaInputItem.cs
- VirtualPath.cs
- DataGridGeneralPage.cs
- AttributeCollection.cs
- XmlReturnWriter.cs
- MethodExpr.cs
- ContextQuery.cs
- StaticContext.cs
- HostedNamedPipeTransportManager.cs
- Symbol.cs
- EntityDataSourceEntitySetNameItem.cs
- DockAndAnchorLayout.cs
- TransformValueSerializer.cs
- MethodExecutor.cs
- ProxyElement.cs
- ReachFixedPageSerializerAsync.cs
- Symbol.cs
- DesignerHelpers.cs
- Registry.cs
- MimeObjectFactory.cs
- MatrixCamera.cs
- FloatAverageAggregationOperator.cs
- CultureInfo.cs
- RichTextBox.cs
- RenderData.cs
- WriteFileContext.cs
- ItemChangedEventArgs.cs
- SafeNativeMethods.cs
- TimeManager.cs
- StatusStrip.cs
- PropertyCondition.cs
- ChangeDirector.cs
- UnaryQueryOperator.cs
- HwndHostAutomationPeer.cs
- IntSecurity.cs
- SmtpFailedRecipientsException.cs
- AssemblyInfo.cs
- MembershipSection.cs
- XpsFilter.cs
- MimeXmlImporter.cs
- InternalMappingException.cs
- BitmapPalettes.cs
- WbemProvider.cs
- WebConfigurationFileMap.cs
- ISFTagAndGuidCache.cs
- EncryptedData.cs
- BinaryCommonClasses.cs
- DataGridViewEditingControlShowingEventArgs.cs