source:
trunk/HeuristicLab.ExtLibs/HeuristicLab.EPPlus/4.0.3/EPPlus-4.0.3/FormulaParsing/Utilities/ArgumentInfo.cs
Last change on this file was 12074, checked in by sraggl, 10 years ago | |
---|---|
File size: 516 bytes |
Line | |
---|---|
1 | using System; |
2 | using System.Collections.Generic; |
3 | using System.Linq; |
4 | using System.Text; |
5 | |
6 | namespace OfficeOpenXml.FormulaParsing.Utilities |
7 | { |
8 | public class ArgumentInfo<T> |
9 | { |
10 | public ArgumentInfo(T val) |
11 | { |
12 | Value = val; |
13 | } |
14 | |
15 | public T Value { get; private set; } |
16 | |
17 | public string Name { get; private set; } |
18 | |
19 | public ArgumentInfo<T> Named(string argName) |
20 | { |
21 | Name = argName; |
22 | return this; |
23 | } |
24 | } |
25 | } |
Note: See TracBrowser
for help on using the repository browser.