Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / ndp / fx / src / CompMod / System / CodeDOM / CodeGotoStatement.cs / 1 / CodeGotoStatement.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 CodeGotoStatement : CodeStatement {
private string label;
public CodeGotoStatement() {
}
public CodeGotoStatement(string label) {
Label = label;
}
///
/// [To be supplied.]
///
public string Label {
get {
return label;
}
set {
if (String.IsNullOrEmpty(value))
throw new ArgumentNullException("value");
this.label = 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 CodeGotoStatement : CodeStatement {
private string label;
public CodeGotoStatement() {
}
public CodeGotoStatement(string label) {
Label = label;
}
///
/// [To be supplied.]
///
public string Label {
get {
return label;
}
set {
if (String.IsNullOrEmpty(value))
throw new ArgumentNullException("value");
this.label = 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
- RenderTargetBitmap.cs
- MinimizableAttributeTypeConverter.cs
- HttpWriter.cs
- TextCharacters.cs
- ColumnResult.cs
- WebPartDeleteVerb.cs
- UncommonField.cs
- XmlAttribute.cs
- TemplateBindingExpression.cs
- StatusStrip.cs
- ActivityXamlServices.cs
- NativeActivity.cs
- XmlSchemaAnnotation.cs
- HttpApplicationStateBase.cs
- QilLoop.cs
- MultiAsyncResult.cs
- DeadLetterQueue.cs
- ResourcesChangeInfo.cs
- InvalidCastException.cs
- TextBox.cs
- VideoDrawing.cs
- SettingsBase.cs
- TileBrush.cs
- RuntimeTrackingProfile.cs
- UnsafeNativeMethodsMilCoreApi.cs
- DataSourceCache.cs
- Math.cs
- PbrsForward.cs
- FileEnumerator.cs
- ConfigurationProperty.cs
- Item.cs
- TickBar.cs
- DataControlFieldCollection.cs
- Converter.cs
- FlowLayoutPanel.cs
- Soap11ServerProtocol.cs
- PolyBezierSegment.cs
- ContextBase.cs
- TypeHelpers.cs
- LexicalChunk.cs
- EmbossBitmapEffect.cs
- LinqExpressionNormalizer.cs
- ArrayTypeMismatchException.cs
- Container.cs
- PrinterResolution.cs
- ArgumentValidation.cs
- HMACSHA384.cs
- SafeEventHandle.cs
- PropertyStore.cs
- DataSourceConverter.cs
- Cursor.cs
- UnauthorizedWebPart.cs
- Control.cs
- Literal.cs
- HtmlTitle.cs
- MethodToken.cs
- SlotInfo.cs
- NavigationCommands.cs
- HtmlElementEventArgs.cs
- PermissionListSet.cs
- HttpValueCollection.cs
- CalendarDataBindingHandler.cs
- Selection.cs
- IncrementalReadDecoders.cs
- TableRowGroup.cs
- Renderer.cs
- WeakHashtable.cs
- DateRangeEvent.cs
- MexNamedPipeBindingCollectionElement.cs
- ScrollBar.cs
- GlobalizationAssembly.cs
- TimeSpanStorage.cs
- DeploymentSection.cs
- QilVisitor.cs
- DeferredElementTreeState.cs
- ColorMap.cs
- ISAPIApplicationHost.cs
- OleDbParameterCollection.cs
- SqlDataReaderSmi.cs
- OleDbCommand.cs
- CmsInterop.cs
- WebEventTraceProvider.cs
- CachedBitmap.cs
- SQlBooleanStorage.cs
- TabletCollection.cs
- RadioButtonFlatAdapter.cs
- RecognitionEventArgs.cs
- HtmlImage.cs
- WebServiceHandler.cs
- dataprotectionpermissionattribute.cs
- Or.cs
- Queue.cs
- tooltip.cs
- BitmapEffectGeneralTransform.cs
- SqlInfoMessageEvent.cs
- Underline.cs
- XmlConvert.cs
- ProcessModelInfo.cs
- CodeGotoStatement.cs
- _SingleItemRequestCache.cs