|
<< Click to Display Table of Contents >> Navigation: Reference > BNCS.Logic.Models Namespace > LogicOperation Class > LogicOperation Properties > LogicOperation.Parameters Property |
Gets or sets an array of key-value pairs representing parameters.
Namespace: BNCS.Logic.Models
Assembly: BNCS.Logic.Models (in BNCS.Logic.Models.dll)
public Nullable<KeyValuePair<string, Object>>[] Parameters { get; set; }
An array of KeyValuePair where the key is a String and the value is an Object. This array can be null.
This property is used to store parameters that can be passed to a method or function. Each parameter is represented as a key-value pair, where the key is a string identifier and the value is an object containing the parameter data.