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;
///
/// [To be supplied.]
///
[
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;
}
}
}
}
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- DataBindingExpressionBuilder.cs
- PtsCache.cs
- NumberEdit.cs
- ProfileGroupSettings.cs
- NonVisualControlAttribute.cs
- sqlcontext.cs
- QueryOutputWriter.cs
- FixedDocument.cs
- CodeDelegateInvokeExpression.cs
- BamlCollectionHolder.cs
- MetafileHeader.cs
- DataExpression.cs
- XmlSchemaObject.cs
- ColorMap.cs
- Hex.cs
- CodeExpressionStatement.cs
- SequentialUshortCollection.cs
- Margins.cs
- DataGridViewColumnEventArgs.cs
- AssemblyResourceLoader.cs
- SourceItem.cs
- PageCache.cs
- DetailsViewUpdatedEventArgs.cs
- BaseTemplateBuildProvider.cs
- HtmlHead.cs
- TextTreeText.cs
- ObjectItemLoadingSessionData.cs
- DesignBindingPropertyDescriptor.cs
- StringFormat.cs
- CollectionViewGroup.cs
- SplitterPanel.cs
- AddingNewEventArgs.cs
- XmlDataCollection.cs
- XmlElementCollection.cs
- CultureTable.cs
- BufferedOutputStream.cs
- ImageIndexEditor.cs
- SrgsElementFactory.cs
- InkCollectionBehavior.cs
- AppDomainProtocolHandler.cs
- InOutArgumentConverter.cs
- XPathParser.cs
- Content.cs
- Win32Exception.cs
- BoundField.cs
- SqlUserDefinedAggregateAttribute.cs
- VSDExceptions.cs
- ToolStripContainer.cs
- EdmValidator.cs
- DiagnosticStrings.cs
- InvalidPrinterException.cs
- DateTimeFormatInfoScanner.cs
- EventMemberCodeDomSerializer.cs
- FrameworkName.cs
- MsdtcWrapper.cs
- AttributeData.cs
- MembershipPasswordException.cs
- UrlMappingsModule.cs
- DataGridrowEditEndingEventArgs.cs
- SingleConverter.cs
- TextSchema.cs
- EventPropertyMap.cs
- UserControlDocumentDesigner.cs
- DataRowChangeEvent.cs
- WindowsTokenRoleProvider.cs
- DataGridRow.cs
- FontSizeConverter.cs
- WCFServiceClientProxyGenerator.cs
- ValidatingReaderNodeData.cs
- GenerateScriptTypeAttribute.cs
- SchemaTypeEmitter.cs
- SapiInterop.cs
- WS2007FederationHttpBinding.cs
- UrlAuthorizationModule.cs
- SqlInternalConnection.cs
- XPathNodeList.cs
- StorageInfo.cs
- DeclaredTypeElement.cs
- XsltSettings.cs
- ContentPosition.cs
- ConnectionString.cs
- WebSysDisplayNameAttribute.cs
- PolyBezierSegmentFigureLogic.cs
- DuplexClientBase.cs
- CustomAttribute.cs
- LogicalTreeHelper.cs
- TypeConverterHelper.cs
- AnimatedTypeHelpers.cs
- XmlSchemaType.cs
- SimpleTextLine.cs
- SystemWebSectionGroup.cs
- ProcessModelInfo.cs
- ObjectConverter.cs
- DeviceFiltersSection.cs
- ClockController.cs
- AttributeUsageAttribute.cs
- XmlAutoDetectWriter.cs
- WebPartConnectionCollection.cs
- connectionpool.cs
- FamilyCollection.cs