Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / CompMod / System / CodeDOM / CodeLabeledStatement.cs / 1305376 / 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;
}
}
}
}
// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- VSDExceptions.cs
- PolyLineSegment.cs
- FileSystemWatcher.cs
- FixedPageAutomationPeer.cs
- Function.cs
- OleAutBinder.cs
- RuntimeHelpers.cs
- IPEndPoint.cs
- AutoGeneratedFieldProperties.cs
- WindowsIdentity.cs
- LongValidator.cs
- ContentPlaceHolder.cs
- ScriptingAuthenticationServiceSection.cs
- DataGridViewCellCollection.cs
- MessageDirection.cs
- ContentPosition.cs
- SuppressMergeCheckAttribute.cs
- XmlAttributeCache.cs
- SqlCachedBuffer.cs
- RoutedCommand.cs
- LicFileLicenseProvider.cs
- PenContexts.cs
- ExpressionDumper.cs
- WebPartUserCapability.cs
- GB18030Encoding.cs
- SEHException.cs
- ScriptResourceHandler.cs
- UpWmlPageAdapter.cs
- Control.cs
- SkipStoryboardToFill.cs
- SqlAliaser.cs
- SelectionRangeConverter.cs
- Walker.cs
- AesCryptoServiceProvider.cs
- DateTimeFormatInfoScanner.cs
- StringFunctions.cs
- ResourceExpressionBuilder.cs
- DisplayNameAttribute.cs
- ExclusiveHandleList.cs
- FileLoadException.cs
- InternalSendMessage.cs
- ProcessStartInfo.cs
- AjaxFrameworkAssemblyAttribute.cs
- IList.cs
- Property.cs
- TableAutomationPeer.cs
- DashStyle.cs
- Serializer.cs
- OrCondition.cs
- RegistryKey.cs
- DataGrid.cs
- HtmlLabelAdapter.cs
- TargetControlTypeAttribute.cs
- MasterPageBuildProvider.cs
- MessageQueueAccessControlEntry.cs
- FrameSecurityDescriptor.cs
- WebPartVerbsEventArgs.cs
- AssociativeAggregationOperator.cs
- CheckBox.cs
- CollectionDataContract.cs
- TreeViewHitTestInfo.cs
- IncrementalHitTester.cs
- ToolStripContentPanel.cs
- SweepDirectionValidation.cs
- MaterialGroup.cs
- CqlQuery.cs
- CacheChildrenQuery.cs
- HGlobalSafeHandle.cs
- Base64Stream.cs
- WebConvert.cs
- DataGridTextBox.cs
- HtmlControl.cs
- FrugalList.cs
- StorageAssociationTypeMapping.cs
- OleDbStruct.cs
- MobileRedirect.cs
- EventSinkHelperWriter.cs
- OleDbSchemaGuid.cs
- BufferModesCollection.cs
- sqlnorm.cs
- DbConnectionStringBuilder.cs
- Selection.cs
- mediapermission.cs
- x509utils.cs
- WebPartRestoreVerb.cs
- SqlCommandBuilder.cs
- WeakHashtable.cs
- AssemblyEvidenceFactory.cs
- DataConnectionHelper.cs
- CheckPair.cs
- ByteStack.cs
- GeometryHitTestParameters.cs
- LinkedList.cs
- Span.cs
- ProtectedConfigurationSection.cs
- AutomationProperty.cs
- ScriptManagerProxy.cs
- GenericWebPart.cs
- InsufficientExecutionStackException.cs
- SamlAttributeStatement.cs