Beispiel #1
0
 /// <summary>
 /// Gets the parameters associated with the operator.
 /// </summary>
 /// <returns>A list of parameters associated with the operator.</returns>
 public List <IParameter> GetParameters() => InternalOperator.GetParameters();
Beispiel #2
0
 /// <summary>
 /// Gets the parameters associated with the operator.
 /// </summary>
 /// <returns>A list of parameters associated with the operator.</returns>
 public List <IParameter> GetParameters() => InternalOperator is null ? new List <IParameter>() : InternalOperator.GetParameters();