Property Value
Value
Sets/Gets data for relevant key.
Declaration
object Value { get; set; }
Property Value
Type | Description |
---|---|
System.Object |
Examples
Example get the value of the entry and returns its type
if (entry.Exists())
{
return entry.Value.GetType().FullName;
}