Any ideas?
Code: Select all
#pragma once
using namespace System;
using namespace ExcelDna::Integration; // NS DOES NOT EXIST
namespace ExcelDNA_CPPCLI {
public ref class MyFunctions
{
public:
[ExcelFunction(Description = "My first")]
int SayHello()
{
return 0;
}
};
}