Code:
/ 4.0 / 4.0 / 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.
//------------------------------------------------------------------------------
//
//
// [....]
// 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
- BinaryObjectInfo.cs
- TextCollapsingProperties.cs
- SystemException.cs
- SingleAnimation.cs
- Html32TextWriter.cs
- PeerNameResolver.cs
- MenuItemStyle.cs
- Activator.cs
- ReceiveSecurityHeader.cs
- XmlElementAttributes.cs
- Errors.cs
- CanExecuteRoutedEventArgs.cs
- SendMailErrorEventArgs.cs
- MenuItemBindingCollection.cs
- _ScatterGatherBuffers.cs
- BoolExpressionVisitors.cs
- SqlDataSourceParameterParser.cs
- XmlSerializableWriter.cs
- ContextMenuStripGroup.cs
- SQlBooleanStorage.cs
- Executor.cs
- XmlSchemaInfo.cs
- GridViewUpdateEventArgs.cs
- AutomationAttributeInfo.cs
- LongPath.cs
- SimpleWebHandlerParser.cs
- GridLengthConverter.cs
- IsolatedStoragePermission.cs
- InputBinder.cs
- Point4D.cs
- unsafeIndexingFilterStream.cs
- DataGridViewCellCollection.cs
- StringCollectionMarkupSerializer.cs
- DataRowExtensions.cs
- FormattedText.cs
- CharacterMetricsDictionary.cs
- hresults.cs
- EditingMode.cs
- NameValuePermission.cs
- SID.cs
- ClientFormsAuthenticationCredentials.cs
- OperatingSystem.cs
- DeadCharTextComposition.cs
- ValidatorCompatibilityHelper.cs
- EnumMemberAttribute.cs
- GuidelineCollection.cs
- GeometryCollection.cs
- ModelProperty.cs
- InProcStateClientManager.cs
- Calendar.cs
- TypeElementCollection.cs
- ScriptingRoleServiceSection.cs
- Ops.cs
- ResourceDisplayNameAttribute.cs
- ActivationArguments.cs
- ExpressionDumper.cs
- AsyncPostBackErrorEventArgs.cs
- SqlProfileProvider.cs
- CounterCreationData.cs
- XmlWriterTraceListener.cs
- ClientBuildManager.cs
- Byte.cs
- RMEnrollmentPage2.cs
- SafeArrayRankMismatchException.cs
- CodeDefaultValueExpression.cs
- PersistencePipeline.cs
- TextParagraphView.cs
- OutputCacheProfile.cs
- AtomServiceDocumentSerializer.cs
- HtmlToClrEventProxy.cs
- MonthCalendar.cs
- StringResourceManager.cs
- ObjectConverter.cs
- MouseButtonEventArgs.cs
- EncryptedKey.cs
- EncoderExceptionFallback.cs
- SkinIDTypeConverter.cs
- ProxyWebPartConnectionCollection.cs
- Binding.cs
- MemoryRecordBuffer.cs
- XmlDataImplementation.cs
- TrackingMemoryStreamFactory.cs
- TemplateNameScope.cs
- SamlAuthorityBinding.cs
- ObjectSpanRewriter.cs
- VideoDrawing.cs
- Expander.cs
- CommandHelper.cs
- ToolStripSeparator.cs
- ToolStripRenderEventArgs.cs
- GetParentChain.cs
- SqlBinder.cs
- TreeViewCancelEvent.cs
- log.cs
- GeneratedContractType.cs
- FormatException.cs
- TypeConverterAttribute.cs
- RMPermissions.cs
- JapaneseLunisolarCalendar.cs
- TabControlToolboxItem.cs