summaryrefslogtreecommitdiff
path: root/src/mscorlib/src/System/Diagnostics/EditAndContinueHelper.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/mscorlib/src/System/Diagnostics/EditAndContinueHelper.cs')
-rw-r--r--src/mscorlib/src/System/Diagnostics/EditAndContinueHelper.cs26
1 files changed, 26 insertions, 0 deletions
diff --git a/src/mscorlib/src/System/Diagnostics/EditAndContinueHelper.cs b/src/mscorlib/src/System/Diagnostics/EditAndContinueHelper.cs
new file mode 100644
index 0000000000..9fcf324a4b
--- /dev/null
+++ b/src/mscorlib/src/System/Diagnostics/EditAndContinueHelper.cs
@@ -0,0 +1,26 @@
+// Copyright (c) Microsoft. All rights reserved.
+// Licensed under the MIT license. See LICENSE file in the project root for full license information.
+
+/*=============================================================================
+**
+**
+**
+** Purpose: Helper for EditAndContinue
+**
+**
+=============================================================================*/
+
+namespace System.Diagnostics {
+
+ using System;
+
+ [Serializable]
+ internal sealed class EditAndContinueHelper
+ {
+#pragma warning disable 169
+#pragma warning disable 414 // Field is not used from managed.
+ private Object _objectReference;
+#pragma warning restore 414
+#pragma warning restore 169
+ }
+}