Code:
/ FX-1434 / FX-1434 / 1.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
- RichTextBoxDesigner.cs
- BufferBuilder.cs
- MdbDataFileEditor.cs
- TreeNodeClickEventArgs.cs
- File.cs
- StdValidatorsAndConverters.cs
- HitTestWithPointDrawingContextWalker.cs
- EventLogger.cs
- SimpleHandlerFactory.cs
- WebPartCloseVerb.cs
- DeviceContext2.cs
- TypeGenericEnumerableViewSchema.cs
- AttributeTableBuilder.cs
- CodeExpressionCollection.cs
- Button.cs
- UriSection.cs
- StylusPointProperties.cs
- ImageFormat.cs
- WebPartMinimizeVerb.cs
- TemplateBindingExtensionConverter.cs
- SymLanguageType.cs
- TransformDescriptor.cs
- DataRelationPropertyDescriptor.cs
- AxisAngleRotation3D.cs
- SqlMetaData.cs
- InfoCardRSAPKCS1SignatureDeformatter.cs
- CreatingCookieEventArgs.cs
- DataGridCaption.cs
- ResourceDefaultValueAttribute.cs
- DictationGrammar.cs
- CorrelationValidator.cs
- WebReferenceOptions.cs
- UserPersonalizationStateInfo.cs
- ThaiBuddhistCalendar.cs
- SoapHeaderAttribute.cs
- EventNotify.cs
- OutputCacheSettingsSection.cs
- ReachDocumentPageSerializer.cs
- FieldTemplateUserControl.cs
- DBNull.cs
- XPathNodeInfoAtom.cs
- ParserOptions.cs
- UnknownBitmapEncoder.cs
- SystemIcmpV6Statistics.cs
- FormClosingEvent.cs
- SpecialFolderEnumConverter.cs
- BaseParser.cs
- FileChangesMonitor.cs
- bidPrivateBase.cs
- TextDecorationCollection.cs
- RegistryKey.cs
- ResourceDefaultValueAttribute.cs
- FlowLayoutSettings.cs
- XmlFormatExtensionPrefixAttribute.cs
- DesignerDataTableBase.cs
- CodeTypeMemberCollection.cs
- InputLanguageEventArgs.cs
- RefExpr.cs
- ContainerSelectorGlyph.cs
- RangeValuePatternIdentifiers.cs
- ExceptionHandlers.cs
- Array.cs
- BulletedListEventArgs.cs
- QilTernary.cs
- Input.cs
- UserMapPath.cs
- AbandonedMutexException.cs
- versioninfo.cs
- ConfigurationValue.cs
- Polygon.cs
- EventLogPermission.cs
- PreviewKeyDownEventArgs.cs
- ClassicBorderDecorator.cs
- DetailsViewInsertedEventArgs.cs
- Utils.cs
- MimeObjectFactory.cs
- SQLMembershipProvider.cs
- PageParserFilter.cs
- WebFormsRootDesigner.cs
- Merger.cs
- ReadOnlyTernaryTree.cs
- CodeVariableReferenceExpression.cs
- ByteAnimationUsingKeyFrames.cs
- IndexedEnumerable.cs
- DataControlButton.cs
- DataExpression.cs
- RightsManagementEncryptedStream.cs
- DocumentPageTextView.cs
- LinqDataSourceValidationException.cs
- ByteAnimationBase.cs
- AggregatePushdown.cs
- TabRenderer.cs
- SafeMemoryMappedViewHandle.cs
- ICspAsymmetricAlgorithm.cs
- GlyphingCache.cs
- ApplicationServicesHostFactory.cs
- ConstructorBuilder.cs
- _ChunkParse.cs
- ObjectDataSourceDesigner.cs
- XmlIlGenerator.cs