Line | |
---|
1 | using System;
|
---|
2 | using System.Collections.Generic;
|
---|
3 | using System.Linq;
|
---|
4 | using System.Text;
|
---|
5 |
|
---|
6 | namespace 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.