Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / CompMod / System / CodeDOM / CodeGotoStatement.cs / 1305376 / 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
- EventToken.cs
- ModelUIElement3D.cs
- HandleRef.cs
- GridErrorDlg.cs
- RelationshipDetailsRow.cs
- MouseGesture.cs
- Annotation.cs
- RowBinding.cs
- TypeInitializationException.cs
- ValueProviderWrapper.cs
- XmlCharacterData.cs
- XmlObjectSerializerReadContextComplex.cs
- WebPartZoneCollection.cs
- ConnectionManagementElementCollection.cs
- CallbackHandler.cs
- WorkflowViewManager.cs
- RequestTimeoutManager.cs
- Atom10FeedFormatter.cs
- XamlSerializerUtil.cs
- ChoiceConverter.cs
- Emitter.cs
- PathParser.cs
- SchemaTableOptionalColumn.cs
- ValidatedControlConverter.cs
- DataGridColumnFloatingHeader.cs
- ConfigXmlAttribute.cs
- RelatedPropertyManager.cs
- SqlDependencyUtils.cs
- XmlSerializerAssemblyAttribute.cs
- XmlQualifiedName.cs
- HwndMouseInputProvider.cs
- XhtmlBasicSelectionListAdapter.cs
- WindowsTokenRoleProvider.cs
- ObjectPropertyMapping.cs
- ConnectionPointCookie.cs
- ExecutionEngineException.cs
- SmiRequestExecutor.cs
- EncryptedKeyIdentifierClause.cs
- XmlnsCache.cs
- _DisconnectOverlappedAsyncResult.cs
- SuppressMergeCheckAttribute.cs
- BaseCodePageEncoding.cs
- XmlQualifiedName.cs
- URLMembershipCondition.cs
- SlotInfo.cs
- SoapHeader.cs
- DataTemplateSelector.cs
- HtmlForm.cs
- Brush.cs
- DBConnection.cs
- RegexCode.cs
- WebFormsRootDesigner.cs
- StreamResourceInfo.cs
- DefaultAsyncDataDispatcher.cs
- InvalidContentTypeException.cs
- TempFiles.cs
- DbProviderFactoriesConfigurationHandler.cs
- TypeExtensionConverter.cs
- Cloud.cs
- DesignerLoader.cs
- SafeSecurityHandles.cs
- AsyncInvokeOperation.cs
- WmlValidationSummaryAdapter.cs
- CharacterBufferReference.cs
- StringAnimationBase.cs
- EndpointIdentity.cs
- CodeDirectoryCompiler.cs
- Positioning.cs
- DetailsViewRowCollection.cs
- ParserContext.cs
- DataTableExtensions.cs
- HealthMonitoringSection.cs
- MemberPathMap.cs
- BasicKeyConstraint.cs
- ElementFactory.cs
- SizeAnimation.cs
- XhtmlTextWriter.cs
- PeerNearMe.cs
- VariableValue.cs
- Rectangle.cs
- RowsCopiedEventArgs.cs
- DataViewListener.cs
- AffineTransform3D.cs
- AlternateView.cs
- ReadOnlyObservableCollection.cs
- ExtenderControl.cs
- DbParameterCollectionHelper.cs
- DesignerActionKeyboardBehavior.cs
- CancellationScope.cs
- ItemTypeToolStripMenuItem.cs
- PropertyFilterAttribute.cs
- SecuritySessionFilter.cs
- BuildProviderUtils.cs
- DecoratedNameAttribute.cs
- SignatureDescription.cs
- ContentTextAutomationPeer.cs
- SecureEnvironment.cs
- DynamicValidator.cs
- SqlCharStream.cs
- XPathNavigatorReader.cs