Method FinishReduce
FinishReduce()
This method will provide the task with the final result of the map reduce operation for specific intermediate key/value pair.
Declaration
KeyValuePair FinishReduce()
            Returns
| Type | Description | 
|---|---|
| KeyValuePair | Return key-value pair.  | 
                
Examples
public KeyValuePair FinishReduce()
{
  KeyValuePair kvp = null;
  kvp.Key = key;
  kvp.Value = count;
  return kvp;
 }