var inserts = new List<string> {mFunction, mColor, Convert.ToString(mQty), mFauc, Convert.ToString(mPrice)};
ThisAddIn.ExcelInsert(inserts.ToString());
and here is where hell starts
public static void ExcelInsert(string mInsert)
{
try
{
// DOESNT WORK :(
var range = this.Application.ActiveCell() as Excel.Range;
range.Text.ToString(mInsert);
}
catch (Exception)
{
throw;
}
I know you can't use the first line in a static method, but honestly I cant wrap my head around an alternative.
I just want it so that at active cell in Excel it inserts that array into the range.
HAELP!







