| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- //
- // System.CodeDom CodeGotoStatement Class implementation
- //
- // Author:
- // Daniel Stodden ([email protected])
- //
- // (C) 2002 Ximian, Inc.
- //
- using System.Runtime.InteropServices;
- namespace System.CodeDom
- {
- [Serializable]
- [ClassInterface(ClassInterfaceType.AutoDispatch)]
- [ComVisible(true)]
- public class CodeGotoStatement
- : CodeStatement
- {
- private string label;
- //
- // Constructors
- //
- public CodeGotoStatement( string label )
- {
- Label = label;
- }
- //
- // Properties
- //
- public string Label {
- get {
- return label;
- }
- set {
- label = value;
- }
- }
- }
- }
|