Getting An Array Result From A C# Method
- by Soo
I am trying to write some code to return an array in C#, but don't know the proper syntax. I think my method is set up correctly, but to set an array to the result of the method is what I'm having difficulty with.
Method Declaration:
double[,] function(double variable)
{
...
code
...
return array
}