[This is preliminary documentation and is subject to change.]
Writes the given count of elements from this array to the given writer.
Namespace: Microsoft.Research.Naiad.Serialization
Assembly: Microsoft.Research.Naiad (in Microsoft.Research.Naiad.dll) Version: 0.5.0.0 (0.5.0.0)
Syntax
C#
public static void Checkpoint<TElement>( this TElement[] array, int count, NaiadWriter writer )
Parameters
- array
- Type: TElement
The array to be written. - count
- Type: SystemInt32
The number of elements to be written. - writer
- Type: Microsoft.Research.Naiad.SerializationNaiadWriter
The writer.
Type Parameters
- TElement
- The type of elements in the array.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type . 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).See Also