Z
Z.K.
I was wondering if it is possible to send multiple arguments to a
property in C# like you can do with a method such as:
public double Average(int x, int y, int z) or
public double Average(params int [] numArray)
I have looked through the books I have, but I see no way to send more
than one argument at a time.
Z.K.
property in C# like you can do with a method such as:
public double Average(int x, int y, int z) or
public double Average(params int [] numArray)
I have looked through the books I have, but I see no way to send more
than one argument at a time.
Z.K.