Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / CompMod / System / CodeDOM / CodeGotoStatement.cs / 1305376 / CodeGotoStatement.cs
//------------------------------------------------------------------------------ //// // //----------------------------------------------------------------------------- namespace System.CodeDom { using System.Diagnostics; using System; using Microsoft.Win32; using System.Collections; using System.Runtime.InteropServices; ///[....] // Copyright (c) Microsoft Corporation. All rights reserved. ///// [ 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.[To be supplied.] ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- TextTabProperties.cs
- StringCollectionMarkupSerializer.cs
- SqlInfoMessageEvent.cs
- CqlIdentifiers.cs
- CompressStream.cs
- LocationUpdates.cs
- HtmlControl.cs
- WCFBuildProvider.cs
- PKCS1MaskGenerationMethod.cs
- DescendantBaseQuery.cs
- DataServices.cs
- NavigationWindow.cs
- DrawingCollection.cs
- SqlTypeConverter.cs
- dtdvalidator.cs
- RemotingServices.cs
- MailMessage.cs
- ScriptMethodAttribute.cs
- XmlObjectSerializer.cs
- NetNamedPipeBindingCollectionElement.cs
- TextParagraphProperties.cs
- WebDescriptionAttribute.cs
- Rotation3D.cs
- AccessibilityApplicationManager.cs
- DeviceFilterEditorDialog.cs
- ToolStrip.cs
- DelegateBodyWriter.cs
- MetadataUtilsSmi.cs
- HttpProxyTransportBindingElement.cs
- SvcMapFileSerializer.cs
- PictureBoxDesigner.cs
- DataGridViewRowPrePaintEventArgs.cs
- MembershipSection.cs
- WebContext.cs
- UnsafeNativeMethodsPenimc.cs
- DataSourceSelectArguments.cs
- KeyConverter.cs
- PersonalizablePropertyEntry.cs
- MediaContext.cs
- _SSPIWrapper.cs
- DataBoundControlHelper.cs
- PropertyRecord.cs
- dataobject.cs
- IResourceProvider.cs
- ValidationRuleCollection.cs
- QueryRewriter.cs
- DefaultPrintController.cs
- DataSourceProvider.cs
- AddDataControlFieldDialog.cs
- TemplatePropertyEntry.cs
- VarInfo.cs
- RawMouseInputReport.cs
- SerializerDescriptor.cs
- WebServiceClientProxyGenerator.cs
- EventToken.cs
- OrthographicCamera.cs
- __Filters.cs
- SmiEventStream.cs
- UidManager.cs
- ServiceSettingsResponseInfo.cs
- FixedSOMSemanticBox.cs
- WmfPlaceableFileHeader.cs
- SqlVersion.cs
- FrameworkElement.cs
- TimeoutValidationAttribute.cs
- DataGridViewButtonCell.cs
- ThreadStateException.cs
- ByteFacetDescriptionElement.cs
- ReflectionTypeLoadException.cs
- Configuration.cs
- HtmlElement.cs
- FloaterBaseParagraph.cs
- SplineKeyFrames.cs
- GPStream.cs
- MultiPageTextView.cs
- ProfileSection.cs
- NameScope.cs
- VisemeEventArgs.cs
- RepeaterItemEventArgs.cs
- ActivityExecutor.cs
- FigureParagraph.cs
- DataSourceControlBuilder.cs
- SourceChangedEventArgs.cs
- TreeViewItemAutomationPeer.cs
- SqlIdentifier.cs
- PreviewPageInfo.cs
- NamespaceExpr.cs
- DataGridViewComboBoxColumn.cs
- SmtpDigestAuthenticationModule.cs
- TagMapCollection.cs
- InterleavedZipPartStream.cs
- AssemblyBuilderData.cs
- PathBox.cs
- DesignTimeTemplateParser.cs
- VScrollProperties.cs
- SystemColorTracker.cs
- XmlTextAttribute.cs
- HMAC.cs
- TemplateControlCodeDomTreeGenerator.cs
- DataGridPageChangedEventArgs.cs