Pathfinding.Int3.this C# (CSharp) Méthode

this() public méthode

public this ( int i ) : int
i int
Résultat int
		public int this[int i] {
			get {
				return i == 0 ? x : (i == 1 ? y : z);
			}
			set {
				if (i == 0) x = value;
				else if (i == 1) y = value;
				else z = value;
			}
		}