Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / fx / src / CompMod / System / CodeDOM / CodeLabeledStatement.cs / 1 / CodeLabeledStatement.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 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; } } } }[To be supplied.] ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- BufferModeSettings.cs
- TextEditorSpelling.cs
- Main.cs
- MetadataSection.cs
- DataGridViewToolTip.cs
- Label.cs
- KeyInfo.cs
- DataServiceProcessingPipeline.cs
- HyperlinkAutomationPeer.cs
- ConfigurationStrings.cs
- HtmlInputFile.cs
- Slider.cs
- EntityContainerAssociationSet.cs
- ExpressionEvaluator.cs
- Context.cs
- BeginStoryboard.cs
- AssemblyResolver.cs
- AsyncWaitHandle.cs
- GridPatternIdentifiers.cs
- TableCell.cs
- TemplatedMailWebEventProvider.cs
- GeometryConverter.cs
- xmlformatgeneratorstatics.cs
- ResourceManager.cs
- RuleSetReference.cs
- PasswordBoxAutomationPeer.cs
- SelectingProviderEventArgs.cs
- Table.cs
- DBParameter.cs
- ColorMap.cs
- EditorAttribute.cs
- PageContent.cs
- DashStyle.cs
- X509CertificateCollection.cs
- ContextProperty.cs
- DataControlFieldTypeEditor.cs
- EllipseGeometry.cs
- UIPermission.cs
- RealProxy.cs
- SqlDependency.cs
- VerticalAlignConverter.cs
- TextElementCollectionHelper.cs
- TypeConverter.cs
- Point3DConverter.cs
- ISFClipboardData.cs
- ListViewCommandEventArgs.cs
- DiagnosticsConfigurationHandler.cs
- TableItemStyle.cs
- VirtualPath.cs
- Environment.cs
- DtrList.cs
- LifetimeServices.cs
- Form.cs
- EdmFunctionAttribute.cs
- Misc.cs
- InkCanvasInnerCanvas.cs
- SessionState.cs
- AnnotationAuthorChangedEventArgs.cs
- NetworkCredential.cs
- PropertyTab.cs
- ColorKeyFrameCollection.cs
- ArgumentDirectionHelper.cs
- securitycriticaldataClass.cs
- PropertyManager.cs
- FilterableData.cs
- UserControl.cs
- NetStream.cs
- PropertyGridView.cs
- ValueType.cs
- WindowInteractionStateTracker.cs
- EndEvent.cs
- FontStretches.cs
- WebPartEditorCancelVerb.cs
- DataGridViewComboBoxEditingControl.cs
- ParseHttpDate.cs
- PerformanceCounterCategory.cs
- ExpressionNode.cs
- Attributes.cs
- IntAverageAggregationOperator.cs
- RadioButtonList.cs
- CultureInfoConverter.cs
- LocatorGroup.cs
- TextEditorLists.cs
- BStrWrapper.cs
- WindowsTokenRoleProvider.cs
- FrameworkElement.cs
- LambdaCompiler.Statements.cs
- XamlReader.cs
- BasicViewGenerator.cs
- FaultContractAttribute.cs
- DataListItemCollection.cs
- Mappings.cs
- DataList.cs
- ExpressionReplacer.cs
- XmlIterators.cs
- IPHostEntry.cs
- FontUnitConverter.cs
- ValidationEventArgs.cs
- ListViewTableCell.cs
- ObjectStateManager.cs