Method BeginReduce
BeginReduce()
This method will provide the user with a starting point to initialize any parameters you want to be used before the actual reducing of elements begins.
Declaration
void BeginReduce()
Examples
Following example illustrate the usage of BeginReduce.
int count;
public void BeginReduce()
{
//All initialization related tasks are done here
count = 0;
}