NotFabi
NotFabi
CC#
Created by NotFabi on 10/25/2023 in #help
❔ View Designer for Forms App
No description
6 replies
CC#
Created by NotFabi on 9/27/2023 in #help
✅ Tuples or Reference when returning multiple Variables
What Version would you recommend using?
private static void GetXY(ref double x, ref double y, Coordinate coord)
{
x = coord.X;
y = coord.Y;
}

private static (double, double) GetXY(Coordinate coord)
{
return (coord.X, coord.Y);
}
private static void GetXY(ref double x, ref double y, Coordinate coord)
{
x = coord.X;
y = coord.Y;
}

private static (double, double) GetXY(Coordinate coord)
{
return (coord.X, coord.Y);
}
17 replies