Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / CompMod / System / CodeDOM / CodeStatement.cs / 1305376 / CodeStatement.cs
//------------------------------------------------------------------------------ //// // //----------------------------------------------------------------------------- namespace System.CodeDom { using System.Diagnostics; using System; using Microsoft.Win32; using System.Collections; using System.Runtime.InteropServices; using System.Runtime.Serialization; ///[....] // Copyright (c) Microsoft Corporation. All rights reserved. ///// [ ClassInterface(ClassInterfaceType.AutoDispatch), ComVisible(true), Serializable, ] public class CodeStatement : CodeObject { private CodeLinePragma linePragma; // Optionally Serializable [OptionalField] private CodeDirectiveCollection startDirectives = null; [OptionalField] private CodeDirectiveCollection endDirectives = null; ////// Represents a statement. /// ////// public CodeLinePragma LinePragma { get { return linePragma; } set { linePragma = value; } } public CodeDirectiveCollection StartDirectives { get { if (startDirectives == null) { startDirectives = new CodeDirectiveCollection(); } return startDirectives; } } public CodeDirectiveCollection EndDirectives { get { if (endDirectives == null) { endDirectives = new CodeDirectiveCollection(); } return endDirectives ; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007./// The line the statement occurs on. /// ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- ConnectionsZone.cs
- FrameworkElementAutomationPeer.cs
- JapaneseCalendar.cs
- ModuleBuilderData.cs
- Camera.cs
- SimplePropertyEntry.cs
- TypeConverterHelper.cs
- DocumentOrderQuery.cs
- PrimarySelectionGlyph.cs
- DbXmlEnabledProviderManifest.cs
- CompressedStack.cs
- XsdBuilder.cs
- WhereaboutsReader.cs
- Models.cs
- ListBindingHelper.cs
- OleDbWrapper.cs
- XmlElement.cs
- CheckBoxList.cs
- PocoEntityKeyStrategy.cs
- OutputCacheProviderCollection.cs
- Cursor.cs
- CodeAccessSecurityEngine.cs
- SignatureConfirmations.cs
- AnnotationAuthorChangedEventArgs.cs
- SchemaCollectionPreprocessor.cs
- ServicePointManagerElement.cs
- SafeNativeMethods.cs
- HttpCookiesSection.cs
- SpellerStatusTable.cs
- XmlAnyElementAttributes.cs
- WebPartHeaderCloseVerb.cs
- DBAsyncResult.cs
- AbandonedMutexException.cs
- AxisAngleRotation3D.cs
- SqlDataSourceCommandEventArgs.cs
- XamlValidatingReader.cs
- DataGridViewColumnDesigner.cs
- ProfilePropertyNameValidator.cs
- Point3DKeyFrameCollection.cs
- WebPartConnectionsConfigureVerb.cs
- Queue.cs
- ClientSettingsProvider.cs
- XamlPointCollectionSerializer.cs
- SectionXmlInfo.cs
- BezierSegment.cs
- WmlObjectListAdapter.cs
- RemotingConfigParser.cs
- BindingSourceDesigner.cs
- InfoCardSymmetricAlgorithm.cs
- PageEventArgs.cs
- SchemaElement.cs
- _FtpControlStream.cs
- EventWaitHandle.cs
- PerformanceCounterPermissionEntry.cs
- GuidelineCollection.cs
- ViewKeyConstraint.cs
- mansign.cs
- SignedXml.cs
- grammarelement.cs
- Encoding.cs
- ProcessHostConfigUtils.cs
- HyperLinkColumn.cs
- PlainXmlDeserializer.cs
- XmlExtensionFunction.cs
- QualifiedCellIdBoolean.cs
- KeyEventArgs.cs
- HierarchicalDataBoundControl.cs
- TextRangeEdit.cs
- METAHEADER.cs
- AssemblyHash.cs
- Geometry3D.cs
- BrowserCapabilitiesCompiler.cs
- ChannelServices.cs
- AdapterSwitches.cs
- OdbcError.cs
- ServiceOperationUIEditor.cs
- ConstructorNeedsTagAttribute.cs
- RedistVersionInfo.cs
- Positioning.cs
- IntPtr.cs
- EditingCommands.cs
- ViewBase.cs
- SystemUdpStatistics.cs
- PropertyChangedEventArgs.cs
- TcpHostedTransportConfiguration.cs
- SupportingTokenDuplexChannel.cs
- FilterException.cs
- SQLBinaryStorage.cs
- WindowsUserNameSecurityTokenAuthenticator.cs
- UrlRoutingHandler.cs
- NameValueConfigurationCollection.cs
- CrossAppDomainChannel.cs
- CompoundFileStreamReference.cs
- CalendarAutoFormat.cs
- SettingsPropertyValue.cs
- RegistrationServices.cs
- ReturnType.cs
- RegistrationServices.cs
- AppDomainShutdownMonitor.cs
- FlowDocumentView.cs