Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.ExtLibs/HeuristicLab.EPPlus/4.0.3/EPPlus-4.0.3/FormulaParsing/NameValueProvider.cs @ 12074

Last change on this file since 12074 was 12074, checked in by sraggl, 9 years ago

#2341: Added EPPlus-4.0.3 to ExtLibs

File size: 680 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5
6namespace OfficeOpenXml.FormulaParsing
7{
8    public class NameValueProvider : INameValueProvider
9    {
10        private NameValueProvider()
11        {
12
13        }
14
15        public static INameValueProvider Empty
16        {
17            get { return new NameValueProvider(); }
18        }
19
20        public bool IsNamedValue(string key, string worksheet)
21        {
22            return false;
23        }
24
25        public object GetNamedValue(string key)
26        {
27            return null;
28        }
29
30        public void Reload()
31        {
32           
33        }
34    }
35}
Note: See TracBrowser for help on using the repository browser.