You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Registered a method
RegisterMethod('Procedure Compute( var pInput : array of byte)');
RegisterMethod(@TNNetFullConnect.Compute, 'Compute');
and in script call we got a type mismatch
BAInput: array of byte;
NN.Compute(BAInput);
The text was updated successfully, but these errors were encountered:
and use it for your parameters and variables. The "array of" expression has different meanings when defining a function and a variable (same as in delphi).
Registered a method
RegisterMethod('Procedure Compute( var pInput : array of byte)');
RegisterMethod(@TNNetFullConnect.Compute, 'Compute');
and in script call we got a type mismatch
BAInput: array of byte;
NN.Compute(BAInput);
The text was updated successfully, but these errors were encountered: