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

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'mcs/class/System/System.CodeDom/CodeSnippetCompileUnit.cs')
-rw-r--r--mcs/class/System/System.CodeDom/CodeSnippetCompileUnit.cs52
1 files changed, 0 insertions, 52 deletions
diff --git a/mcs/class/System/System.CodeDom/CodeSnippetCompileUnit.cs b/mcs/class/System/System.CodeDom/CodeSnippetCompileUnit.cs
deleted file mode 100644
index 49d13d5d461..00000000000
--- a/mcs/class/System/System.CodeDom/CodeSnippetCompileUnit.cs
+++ /dev/null
@@ -1,52 +0,0 @@
-//
-// 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;
- }
- }
- }
-}