Welcome to mirror list, hosted at ThFree Co, Russian Federation.

CodeSnippetCompileUnit.cs « System.CodeDom « System « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 49d13d5d461edda72d783406395399b9f2e11f55 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
//
// System.CodeDom CodeSnippetCompileUnit Class implementation
//
// Author:
//   Daniel Stodden (stodden@in.tum.de)
//
// (C) 2002 Ximian, Inc.
//

using System.Runtime.InteropServices;

namespace System.CodeDom
{
	[Serializable]
	[ClassInterface(ClassInterfaceType.AutoDispatch)]
	[ComVisible(true)]
	public class CodeSnippetCompileUnit
		: CodeCompileUnit
	{
		private CodeLinePragma linePragma;
		private string value;

		//
		// Constructors
		//
		public CodeSnippetCompileUnit( string value )
		{
			this.value = value;
		}

		//
		// Properties
		//
		public CodeLinePragma LinePragma {
			get {
				return linePragma;
			}
			set {
				linePragma = value;
			}
		}

		public string Value {
			get {
				return this.value;
			}
			set {
				this.value = value;
			}
		}
	}
}