| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- //
- // System.CodeDom CodeSnippetExpression Class implementation
- //
- // Author:
- // Daniel Stodden ([email protected])
- //
- // (C) 2001 Ximian, Inc.
- //
- using System.Runtime.InteropServices;
- namespace System.CodeDom
- {
- [Serializable]
- [ClassInterface(ClassInterfaceType.AutoDispatch)]
- [ComVisible(true)]
- public class CodeSnippetExpression
- : CodeExpression
- {
- private string value;
- //
- // Constructors
- //
- public CodeSnippetExpression()
- {
- }
- public CodeSnippetExpression( string value )
- {
- Value = value;
- }
-
- //
- // Properties
- //
- public string Value {
- get {
- return this.value;
- }
- set {
- this.value = value;
- }
- }
- }
- }
|