Openbullet constant function in c#
-
Hello, I was wondering how constant function will be looks like in c#
private Function functionType = Function.Constant;
/// <summary>The function to execute.</summary>
public Function FunctionType { get { return functionType; } set { functionType = value; OnPropertyChanged(); } }I saw this but still I can’t get where is the input