How to call and register Events in C#, with return
public Exports()
{
Exports.Add("Test", new Action<string>(Test));
}
private string Test(string content)
{
return $"{content} getestet"
}
CS0407 ‘string Exports.Test(string)’ has the wrong return type
In Lua is it possible