blob: cca4e573c063fef17ff0c26f612b78185bfe3c1a [file] [log] [blame]
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace EPPlusExcelFormDemo
{
public partial class frmFunctions : Form
{
public frmFunctions()
{
InitializeComponent();
}
public frmFunctions(List<string> functions)
{
InitializeComponent();
var sb = new StringBuilder();
foreach (var f in functions)
{
sb.AppendLine(f.ToUpper());
}
textBox1.Text = sb.ToString();
}
}
}