Skip to content

Instantly share code, notes, and snippets.

@mariusz
Created January 17, 2009 13:51
Show Gist options
  • Save mariusz/48345 to your computer and use it in GitHub Desktop.
Save mariusz/48345 to your computer and use it in GitHub Desktop.
public double this[int index]
{
get
{
switch (index)
{
case 0:
return x;
case 1:
return y;
case 2:
return z;
default:
throw new InvalidOperationException("Punkt ma tylko 3 sk³adowe !!");
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment