Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / ndp / fx / src / CompMod / System / CodeDOM / CodeStatement.cs / 1 / CodeStatement.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; using System.Runtime.Serialization; ////// [ 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. /// ///// 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; using System.Runtime.Serialization; ////// [ 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
- ProcessHost.cs
- WebPartEditorCancelVerb.cs
- EventArgs.cs
- EntityDataSourceContextCreatedEventArgs.cs
- Byte.cs
- WebPartEditVerb.cs
- SqlDataSourceDesigner.cs
- TreeNode.cs
- ImageKeyConverter.cs
- EntitySetBase.cs
- NumberSubstitution.cs
- TdsParserSessionPool.cs
- SqlExpander.cs
- Currency.cs
- HttpWriter.cs
- MethodImplAttribute.cs
- IIS7WorkerRequest.cs
- WebControlAdapter.cs
- NavigationCommands.cs
- OraclePermission.cs
- ReplyChannelBinder.cs
- MenuScrollingVisibilityConverter.cs
- AssemblyAssociatedContentFileAttribute.cs
- XmlSerializationGeneratedCode.cs
- HttpRuntime.cs
- CodeAttributeArgumentCollection.cs
- TextTrailingWordEllipsis.cs
- DecimalAnimationBase.cs
- SessionStateContainer.cs
- HMACSHA384.cs
- BookmarkUndoUnit.cs
- EntryPointNotFoundException.cs
- ButtonBase.cs
- EntityDataSourceChangingEventArgs.cs
- BitStack.cs
- XmlNotation.cs
- PrinterResolution.cs
- FlowDocumentPageViewerAutomationPeer.cs
- PlatformNotSupportedException.cs
- SmtpReplyReaderFactory.cs
- EasingFunctionBase.cs
- ActiveXMessageFormatter.cs
- WinOEToolBoxItem.cs
- ColumnMapCopier.cs
- DocumentApplicationJournalEntry.cs
- DesignerListAdapter.cs
- ProfileModule.cs
- InputDevice.cs
- XPathAncestorQuery.cs
- ResourcesGenerator.cs
- DecoratedNameAttribute.cs
- TdsParameterSetter.cs
- Lazy.cs
- ListBindableAttribute.cs
- ProcessModelInfo.cs
- QuaternionAnimation.cs
- HtmlTitle.cs
- ConfigXmlDocument.cs
- PtsHelper.cs
- HitTestParameters3D.cs
- UserUseLicenseDictionaryLoader.cs
- XmlSchemaAttribute.cs
- TextParagraphProperties.cs
- TextParaLineResult.cs
- StringReader.cs
- PersonalizationProviderCollection.cs
- RotateTransform.cs
- SystemColors.cs
- RowsCopiedEventArgs.cs
- SerializationSectionGroup.cs
- AsyncDataRequest.cs
- ValueProviderWrapper.cs
- ApplicationId.cs
- __Error.cs
- HotSpotCollectionEditor.cs
- UnknownBitmapDecoder.cs
- SqlDataSourceFilteringEventArgs.cs
- AppSettingsExpressionBuilder.cs
- AppLevelCompilationSectionCache.cs
- WsdlBuildProvider.cs
- PassportPrincipal.cs
- TabPage.cs
- DetailsViewUpdatedEventArgs.cs
- GridEntry.cs
- DataTemplate.cs
- ZoneButton.cs
- EntityProviderServices.cs
- SingleSelectRootGridEntry.cs
- ActionMessageFilterTable.cs
- CodeValidator.cs
- TimeIntervalCollection.cs
- StaticContext.cs
- Pkcs9Attribute.cs
- SpanIndex.cs
- Trace.cs
- XmlEncoding.cs
- FunctionDetailsReader.cs
- Control.cs
- CodeStatement.cs
- CompilerCollection.cs