• Webinars
  • Docs
  • Download
  • Blogs
  • Contact Us
Show / Hide Table of Contents

Property Value

Value

Sets/returns value from intermediate Key-Value pair.

Declaration
public object Value { get; set; }
Property Value
Type Description
System.Object
Examples

Example sets the value in KeyValuePair

public KeyValuePair FinishReduce()
{
   outputMapEntry.Key = outputKey;
   outputMapEntry.Value = count;
   return outputMapEntry;
}
Back to top Copyright © 2017 Alachisoft