Click or drag to resize

coordinateBindCoordinateBind Method (Array)

Binds the elements in an Array to their coordinates.

Namespace:  WhetStone.Looping
Assembly:  WhetStone (in WhetStone.dll) Version: 1.0.4.0 (1.0.0.0)
Syntax
C#
public static IEnumerable<Tuple<Object, int[]>> CoordinateBind(
	this Array this
)

Parameters

this
Type: SystemArray
The Array whose elements to use.

Return Value

Type: IEnumerableTupleObject, Int32
A new IEnumerableT of TupleT1, T2. The first element of each tuple is the element, the second is the coordinates.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type Array. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
Remarks
See Also