Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / ndp / fx / src / CompMod / System / CodeDOM / CodeIterationStatement.cs / 1 / CodeIterationStatement.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 CodeIterationStatement : CodeStatement { private CodeStatement initStatement; private CodeExpression testExpression; private CodeStatement incrementStatement; private CodeStatementCollection statements = new CodeStatementCollection(); ////// Represents a simple for loop. /// ////// public CodeIterationStatement() { } ////// Initializes a new instance of ///. /// /// public CodeIterationStatement(CodeStatement initStatement, CodeExpression testExpression, CodeStatement incrementStatement, params CodeStatement[] statements) { InitStatement = initStatement; TestExpression = testExpression; IncrementStatement = incrementStatement; Statements.AddRange(statements); } ////// Initializes a new instance of ///. /// /// public CodeStatement InitStatement { get { return initStatement; } set { initStatement = value; } } ////// Gets or sets /// the loop initialization statement. /// ////// public CodeExpression TestExpression { get { return testExpression; } set { testExpression = value; } } ////// Gets or sets /// the expression to test for. /// ////// public CodeStatement IncrementStatement { get { return incrementStatement; } set { incrementStatement = value; } } ////// Gets or sets /// the per loop cycle increment statement. /// ////// public CodeStatementCollection Statements { get { return statements; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ ///// Gets or sets /// the statements to be executed within the loop. /// ///// 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 CodeIterationStatement : CodeStatement { private CodeStatement initStatement; private CodeExpression testExpression; private CodeStatement incrementStatement; private CodeStatementCollection statements = new CodeStatementCollection(); ////// Represents a simple for loop. /// ////// public CodeIterationStatement() { } ////// Initializes a new instance of ///. /// /// public CodeIterationStatement(CodeStatement initStatement, CodeExpression testExpression, CodeStatement incrementStatement, params CodeStatement[] statements) { InitStatement = initStatement; TestExpression = testExpression; IncrementStatement = incrementStatement; Statements.AddRange(statements); } ////// Initializes a new instance of ///. /// /// public CodeStatement InitStatement { get { return initStatement; } set { initStatement = value; } } ////// Gets or sets /// the loop initialization statement. /// ////// public CodeExpression TestExpression { get { return testExpression; } set { testExpression = value; } } ////// Gets or sets /// the expression to test for. /// ////// public CodeStatement IncrementStatement { get { return incrementStatement; } set { incrementStatement = value; } } ////// Gets or sets /// the per loop cycle increment statement. /// ////// public CodeStatementCollection Statements { get { return statements; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007./// Gets or sets /// the statements to be executed within the loop. /// ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- ClientUriBehavior.cs
- EncoderFallback.cs
- HttpConfigurationContext.cs
- DebugHandleTracker.cs
- Publisher.cs
- XmlSchemaException.cs
- HtmlWindowCollection.cs
- QilScopedVisitor.cs
- ClickablePoint.cs
- DoubleLinkList.cs
- HtmlControl.cs
- TableAdapterManagerNameHandler.cs
- SqlCacheDependencySection.cs
- CollectionViewGroupRoot.cs
- Filter.cs
- HitTestDrawingContextWalker.cs
- AmbientValueAttribute.cs
- DirectionalLight.cs
- ConfigurationStrings.cs
- FixedTextBuilder.cs
- WebControl.cs
- PageThemeCodeDomTreeGenerator.cs
- ComboBoxAutomationPeer.cs
- XmlTypeMapping.cs
- UserNameSecurityTokenProvider.cs
- WMICapabilities.cs
- ZoomPercentageConverter.cs
- AdapterUtil.cs
- ProxyGenerationError.cs
- TableParaClient.cs
- SortQuery.cs
- CodeDefaultValueExpression.cs
- BamlReader.cs
- ConditionChanges.cs
- Int64AnimationBase.cs
- PixelFormat.cs
- LineBreakRecord.cs
- XmlNamespaceMapping.cs
- PanelContainerDesigner.cs
- BinarySecretSecurityToken.cs
- ErrorHandlingAcceptor.cs
- Triangle.cs
- MethodCallConverter.cs
- DataTrigger.cs
- SqlDependencyUtils.cs
- DataContext.cs
- WarningException.cs
- WebHeaderCollection.cs
- ImageFormat.cs
- DistinctQueryOperator.cs
- DataColumn.cs
- xamlnodes.cs
- XmlSchemaFacet.cs
- WebPartCollection.cs
- TemplateField.cs
- UInt64Converter.cs
- ProcessModelSection.cs
- SecurityKeyIdentifier.cs
- DbConnectionPoolGroupProviderInfo.cs
- XmlSchemaAny.cs
- SettingsProviderCollection.cs
- SettingsAttributes.cs
- TypeElement.cs
- IOThreadScheduler.cs
- WindowInteractionStateTracker.cs
- _CookieModule.cs
- SoapAttributeOverrides.cs
- ToolStripGripRenderEventArgs.cs
- Figure.cs
- TemplateBaseAction.cs
- XPathScanner.cs
- TagPrefixInfo.cs
- ExtentKey.cs
- RuntimeComponentFilter.cs
- MouseButton.cs
- AlternateView.cs
- unitconverter.cs
- ContextMenuAutomationPeer.cs
- IdentifierService.cs
- NumberSubstitution.cs
- MergePropertyDescriptor.cs
- FontStyleConverter.cs
- ScriptingJsonSerializationSection.cs
- ResXResourceReader.cs
- ObjectStateManager.cs
- PrincipalPermission.cs
- NameValueFileSectionHandler.cs
- SqlCommandSet.cs
- ObsoleteAttribute.cs
- SystemSounds.cs
- MachineSettingsSection.cs
- TextDecoration.cs
- PathFigure.cs
- AutomationPatternInfo.cs
- Knowncolors.cs
- CheckBox.cs
- shaper.cs
- FunctionImportElement.cs
- ProcessModelInfo.cs
- DummyDataSource.cs