|
|
|
|
|
by andyjohnson0
3590 days ago
|
|
It maybe wasn't clear, but I was referring to the parent's point about verbosity when using the 'old' Tuple class. using Complex = System.Tuple<double, double>;
is less verbose than public class Complex
{
public double i { get; set; }
public double j { get; set; }
}
|
|