Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / CompMod / System / CodeDOM / CodeLabeledStatement.cs / 1305376 / CodeLabeledStatement.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 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. //------------------------------------------------------------------------------ //[To be supplied.] ///// // //----------------------------------------------------------------------------- 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 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.[To be supplied.] ///
Link Menu
This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- BmpBitmapEncoder.cs
- SafeArchiveContext.cs
- MessageSmuggler.cs
- PromptStyle.cs
- TimeStampChecker.cs
- VoiceObjectToken.cs
- BindingContext.cs
- ItemsControlAutomationPeer.cs
- WorkflowQueuingService.cs
- SystemIPGlobalProperties.cs
- EventListener.cs
- QueryExpr.cs
- Evidence.cs
- RepeatButtonAutomationPeer.cs
- NamespaceEmitter.cs
- ActiveXMessageFormatter.cs
- GenericWebPart.cs
- SspiWrapper.cs
- PanelDesigner.cs
- XmlRootAttribute.cs
- CompilationAssemblyInstallComponent.cs
- DataGridTableCollection.cs
- CheckBoxField.cs
- StyleCollectionEditor.cs
- LookupTables.cs
- CryptoProvider.cs
- WindowsTab.cs
- GlyphsSerializer.cs
- QueuePropertyVariants.cs
- WebPartEditorOkVerb.cs
- StringArrayEditor.cs
- OdbcInfoMessageEvent.cs
- FlowLayoutSettings.cs
- TypeLoader.cs
- RegexRunner.cs
- RegexRunnerFactory.cs
- ProtocolImporter.cs
- XmlValidatingReaderImpl.cs
- RemotingServices.cs
- GridViewCommandEventArgs.cs
- QilSortKey.cs
- ParserExtension.cs
- UriExt.cs
- MatrixConverter.cs
- TimeIntervalCollection.cs
- AnimatedTypeHelpers.cs
- ICspAsymmetricAlgorithm.cs
- DataGridTable.cs
- CaseStatementProjectedSlot.cs
- WebEvents.cs
- SequenceFullException.cs
- XmlEntity.cs
- GeometryGroup.cs
- SchemaImporterExtensionElement.cs
- ConfigXmlElement.cs
- CharStorage.cs
- ReflectTypeDescriptionProvider.cs
- FileUpload.cs
- BindingMAnagerBase.cs
- DocumentsTrace.cs
- HMACRIPEMD160.cs
- CreatingCookieEventArgs.cs
- ShaderRenderModeValidation.cs
- Helper.cs
- TabControl.cs
- Comparer.cs
- _TLSstream.cs
- Label.cs
- DesignerLoader.cs
- NumberFormatInfo.cs
- UnauthorizedWebPart.cs
- FamilyTypeface.cs
- SBCSCodePageEncoding.cs
- BamlResourceSerializer.cs
- Cursor.cs
- AutoGeneratedField.cs
- X509ThumbprintKeyIdentifierClause.cs
- TextDecorationLocationValidation.cs
- ScrollBarRenderer.cs
- MetadataFile.cs
- RootProfilePropertySettingsCollection.cs
- CroppedBitmap.cs
- WindowsFormsHelpers.cs
- LassoHelper.cs
- RoleManagerModule.cs
- HttpClientCertificate.cs
- Group.cs
- OutputCacheSettings.cs
- StringFreezingAttribute.cs
- ScriptingWebServicesSectionGroup.cs
- TraceAsyncResult.cs
- ParameterToken.cs
- DurableInstancingOptions.cs
- UTF7Encoding.cs
- Clause.cs
- PropertyReferenceSerializer.cs
- XslAstAnalyzer.cs
- TextViewDesigner.cs
- TaskHelper.cs
- ToolStripPanelDesigner.cs