Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.ExtLibs/HeuristicLab.EPPlus/4.0.3/EPPlus-4.0.3/FormulaParsing/Utilities/ArgumentInfo.cs @ 13401

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

#2341: Added EPPlus-4.0.3 to ExtLibs

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