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

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- DataBoundControlDesigner.cs
- typedescriptorpermission.cs
- DataSourceHelper.cs
- SaveCardRequest.cs
- ComponentDispatcher.cs
- ControllableStoryboardAction.cs
- RectConverter.cs
- ItemDragEvent.cs
- DtrList.cs
- LoginNameDesigner.cs
- CroppedBitmap.cs
- AttributeUsageAttribute.cs
- DummyDataSource.cs
- HitTestParameters3D.cs
- OdbcCommandBuilder.cs
- RawStylusInputReport.cs
- RequiredAttributeAttribute.cs
- AsymmetricAlgorithm.cs
- Attributes.cs
- SplineQuaternionKeyFrame.cs
- SQLDecimal.cs
- DataProtection.cs
- BitSet.cs
- GridViewRow.cs
- X509RawDataKeyIdentifierClause.cs
- OracleBFile.cs
- ProfileGroupSettings.cs
- OdbcErrorCollection.cs
- DelegateBodyWriter.cs
- dbdatarecord.cs
- DependencyObjectType.cs
- CopyAttributesAction.cs
- SecurityManager.cs
- RTLAwareMessageBox.cs
- Facet.cs
- DecimalAnimationUsingKeyFrames.cs
- WindowCollection.cs
- DependencyPropertyHelper.cs
- DataGridSortCommandEventArgs.cs
- SyndicationPerson.cs
- NativeBuffer.cs
- NetworkCredential.cs
- ProcessModelInfo.cs
- XmlBinaryReaderSession.cs
- WebPartHelpVerb.cs
- MenuCommand.cs
- ExpressionBuilderCollection.cs
- GridItem.cs
- EmptyElement.cs
- CodeCommentStatementCollection.cs
- ToolStripDropDownMenu.cs
- QilLoop.cs
- EventLog.cs
- StrokeCollectionConverter.cs
- SmtpNetworkElement.cs
- _HeaderInfo.cs
- RegisteredScript.cs
- SqlMethodTransformer.cs
- SharedPerformanceCounter.cs
- ICspAsymmetricAlgorithm.cs
- WebHeaderCollection.cs
- XmlnsDictionary.cs
- BufferedReceiveElement.cs
- Metadata.cs
- LongCountAggregationOperator.cs
- baseaxisquery.cs
- StylusPointPropertyInfo.cs
- ApplicationHost.cs
- ListBindableAttribute.cs
- BooleanExpr.cs
- RunWorkerCompletedEventArgs.cs
- RawStylusInputCustomDataList.cs
- ToolboxItemCollection.cs
- TCEAdapterGenerator.cs
- StoryFragments.cs
- COM2FontConverter.cs
- HttpRequestWrapper.cs
- ModifiableIteratorCollection.cs
- PageCache.cs
- DispatcherOperation.cs
- RemotingException.cs
- SafeViewOfFileHandle.cs
- DataViewManagerListItemTypeDescriptor.cs
- StreamingContext.cs
- DataGridViewRowHeaderCell.cs
- OperationValidationEventArgs.cs
- SchemaCollectionPreprocessor.cs
- RequestTimeoutManager.cs
- HTTPNotFoundHandler.cs
- cookiecollection.cs
- ArrangedElement.cs
- SpotLight.cs
- SQlBooleanStorage.cs
- infer.cs
- SqlTypeSystemProvider.cs
- Types.cs
- SystemColors.cs
- SecondaryViewProvider.cs
- SystemGatewayIPAddressInformation.cs
- TcpTransportManager.cs