I would like to define one of my parameters to be a C# out parameter in one of my interfaces. I realize that F# supports byref
but how can I apply the System.Runtime.InteropServices.OutAttribute
to one of my interface parameters?
C# Interface I am trying to replicate
public interface IStatisticalTests
{
void JohansenWrapper(
double[,] dat,
double alpha,
bool doAdfPreTests,
out double cointStatus,
out JohansenModelParameters[] johansenModelParameters);
}