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.Data/corefx/FieldNameLookup.cs')
-rw-r--r--mcs/class/System.Data/corefx/FieldNameLookup.cs16
1 files changed, 0 insertions, 16 deletions
diff --git a/mcs/class/System.Data/corefx/FieldNameLookup.cs b/mcs/class/System.Data/corefx/FieldNameLookup.cs
deleted file mode 100644
index 80c5925c18a..00000000000
--- a/mcs/class/System.Data/corefx/FieldNameLookup.cs
+++ /dev/null
@@ -1,16 +0,0 @@
-namespace System.Data.ProviderBase
-{
- partial class FieldNameLookup
- {
- public int IndexOfName(string fieldName)
- {
- if (null == _fieldNameLookup)
- {
- GenerateLookup();
- }
- // via case sensitive search, first match with lowest ordinal matches
- object value = _fieldNameLookup[fieldName];
- return ((null != value) ? (int)value : -1);
- }
- }
-} \ No newline at end of file