summaryrefslogtreecommitdiff
path: root/src/mscorlib/src/System/Resources/IResourceReader.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/mscorlib/src/System/Resources/IResourceReader.cs')
-rw-r--r--src/mscorlib/src/System/Resources/IResourceReader.cs30
1 files changed, 0 insertions, 30 deletions
diff --git a/src/mscorlib/src/System/Resources/IResourceReader.cs b/src/mscorlib/src/System/Resources/IResourceReader.cs
deleted file mode 100644
index de8f9db18e..0000000000
--- a/src/mscorlib/src/System/Resources/IResourceReader.cs
+++ /dev/null
@@ -1,30 +0,0 @@
-// Licensed to the .NET Foundation under one or more agreements.
-// The .NET Foundation licenses this file to you under the MIT license.
-// See the LICENSE file in the project root for more information.
-
-/*============================================================
-**
-**
-**
-**
-**
-** Purpose: Abstraction to read streams of resources.
-**
-**
-===========================================================*/
-namespace System.Resources {
- using System;
- using System.IO;
- using System.Collections;
-
- public interface IResourceReader : IEnumerable, IDisposable
- {
- // Interface does not need to be marked with the serializable attribute
- // Closes the ResourceReader, releasing any resources associated with it.
- // This could close a network connection, a file, or do nothing.
- void Close();
-
-
- new IDictionaryEnumerator GetEnumerator();
- }
-}