Code:
/ DotNET / DotNET / 8.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
- ArgumentNullException.cs
- DataGridViewCell.cs
- XamlWriter.cs
- StylusEditingBehavior.cs
- ByeMessageCD1.cs
- PointHitTestParameters.cs
- NotifyIcon.cs
- storepermissionattribute.cs
- XmlSerializerSection.cs
- DataGridViewCellLinkedList.cs
- ResourcePart.cs
- PresentationAppDomainManager.cs
- CapabilitiesPattern.cs
- Rect3D.cs
- TextRenderer.cs
- SynchronizationContext.cs
- OrderPreservingMergeHelper.cs
- HttpCacheParams.cs
- RichTextBoxConstants.cs
- LayoutUtils.cs
- CorrelationManager.cs
- MetafileHeaderWmf.cs
- DbSetClause.cs
- XamlVector3DCollectionSerializer.cs
- AppSettingsExpressionBuilder.cs
- LicenseContext.cs
- TransformProviderWrapper.cs
- MarkupObject.cs
- JoinElimination.cs
- DataSourceProvider.cs
- SafePointer.cs
- GridSplitter.cs
- WebPartDisplayModeCollection.cs
- BamlLocalizabilityResolver.cs
- UndoEngine.cs
- WindowsListViewGroup.cs
- RoleGroupCollectionEditor.cs
- WebEventTraceProvider.cs
- PrePrepareMethodAttribute.cs
- TextRangeBase.cs
- XsltLibrary.cs
- IpcChannel.cs
- ResourceWriter.cs
- CalculatedColumn.cs
- DefaultHttpHandler.cs
- MinMaxParagraphWidth.cs
- IPHostEntry.cs
- CacheAxisQuery.cs
- Point3DCollectionConverter.cs
- ContentElement.cs
- RotateTransform3D.cs
- ValidationManager.cs
- DataGridViewButtonCell.cs
- CachedCompositeFamily.cs
- Cursor.cs
- HtmlLinkAdapter.cs
- DetailsViewRowCollection.cs
- Wildcard.cs
- DocumentPageView.cs
- SQLBoolean.cs
- CreateSequenceResponse.cs
- WebBaseEventKeyComparer.cs
- ConsoleKeyInfo.cs
- ArgumentOutOfRangeException.cs
- PasswordPropertyTextAttribute.cs
- ConversionContext.cs
- TextContainerHelper.cs
- ReliabilityContractAttribute.cs
- MethodBuilderInstantiation.cs
- PolicyStatement.cs
- followingquery.cs
- DialogWindow.cs
- FacetValueContainer.cs
- Compiler.cs
- QueueAccessMode.cs
- MenuBase.cs
- RSATokenProvider.cs
- SQLString.cs
- ThreadPool.cs
- WebConfigurationManager.cs
- SQLMembershipProvider.cs
- sqlcontext.cs
- RenderData.cs
- Schema.cs
- IncrementalCompileAnalyzer.cs
- ZipIOExtraField.cs
- ListView.cs
- UshortList2.cs
- TypeSystem.cs
- BamlBinaryWriter.cs
- DbDataAdapter.cs
- GeneralTransform3D.cs
- ViewPort3D.cs
- SoapIncludeAttribute.cs
- HighlightComponent.cs
- DataPointer.cs
- FloatUtil.cs
- InternalUserCancelledException.cs
- PersonalizationProviderHelper.cs
- CheckPair.cs