Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / CompMod / System / CodeDOM / CodeLabeledStatement.cs / 1305376 / CodeLabeledStatement.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 CodeLabeledStatement : CodeStatement { private string label; private CodeStatement statement; ///[To be supplied.] ////// public CodeLabeledStatement() { } ///[To be supplied.] ////// public CodeLabeledStatement(string label) { this.label = label; } ///[To be supplied.] ////// public CodeLabeledStatement(string label, CodeStatement statement) { this.label = label; this.statement = statement; } ///[To be supplied.] ////// public string Label { get { return (label == null) ? string.Empty : label; } set { this.label = value; } } ///[To be supplied.] ////// public CodeStatement Statement { get { return statement; } set { this.statement = value; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.[To be supplied.] ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- DataMember.cs
- SQLUtility.cs
- CellNormalizer.cs
- SqlMetaData.cs
- CommandCollectionEditor.cs
- PeerSecurityHelpers.cs
- WindowsAltTab.cs
- IndexOutOfRangeException.cs
- Utils.cs
- AssertSection.cs
- KoreanCalendar.cs
- GreenMethods.cs
- RectangleF.cs
- ProgressBarBrushConverter.cs
- InputLanguageSource.cs
- JsonFormatReaderGenerator.cs
- TableLayoutStyleCollection.cs
- AstTree.cs
- List.cs
- ByteAnimationBase.cs
- SizeAnimationUsingKeyFrames.cs
- Point3DCollection.cs
- DataGridColumnStyleMappingNameEditor.cs
- PropertyGrid.cs
- FixedSOMLineRanges.cs
- Invariant.cs
- QueryReaderSettings.cs
- FamilyMap.cs
- wmiprovider.cs
- RelationshipManager.cs
- ToolZone.cs
- WizardPanel.cs
- Cursor.cs
- EntityDataSourceContextDisposingEventArgs.cs
- ActivityInstanceReference.cs
- TagElement.cs
- Document.cs
- RewritingProcessor.cs
- FormViewUpdatedEventArgs.cs
- FormattedText.cs
- EditBehavior.cs
- DataBindingsDialog.cs
- dataprotectionpermissionattribute.cs
- NavigationPropertyAccessor.cs
- SurrogateEncoder.cs
- FixedNode.cs
- ActionMismatchAddressingException.cs
- WebPartPersonalization.cs
- CodeDomConfigurationHandler.cs
- FunctionUpdateCommand.cs
- RequestCache.cs
- ColorAnimationUsingKeyFrames.cs
- BuildManagerHost.cs
- DiscoveryMessageSequence11.cs
- ColumnResult.cs
- DependentList.cs
- WpfWebRequestHelper.cs
- TrailingSpaceComparer.cs
- ThousandthOfEmRealDoubles.cs
- ParserOptions.cs
- EntityDesignerBuildProvider.cs
- RuleSettingsCollection.cs
- SpecialTypeDataContract.cs
- TemplateComponentConnector.cs
- ClrPerspective.cs
- FontStretch.cs
- DataSourceProvider.cs
- ArraySegment.cs
- PageThemeParser.cs
- CompilerResults.cs
- DataGridViewImageCell.cs
- RectangleF.cs
- ExpressionBuilderCollection.cs
- DataRecordObjectView.cs
- InputDevice.cs
- AsymmetricSignatureFormatter.cs
- ObjectDataSourceWizardForm.cs
- LinqDataSourceView.cs
- DataGridViewRowHeaderCell.cs
- MimeParameters.cs
- ExceptionValidationRule.cs
- NullRuntimeConfig.cs
- DBPropSet.cs
- updateconfighost.cs
- VBIdentifierName.cs
- UIElement3DAutomationPeer.cs
- TextSpanModifier.cs
- ActivityDesigner.cs
- CompilationPass2TaskInternal.cs
- AccessViolationException.cs
- DataBindingHandlerAttribute.cs
- XmlHierarchyData.cs
- XDRSchema.cs
- DateTimeEditor.cs
- CommandLibraryHelper.cs
- validationstate.cs
- ItemsControl.cs
- __FastResourceComparer.cs
- DecoderReplacementFallback.cs
- ContractNamespaceAttribute.cs