No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ParameterArgs.cs 439B

123456789101112131415161718192021222324
  1. using System;
  2. namespace Unity.VisualScripting.Dependencies.NCalc
  3. {
  4. public class ParameterArgs : EventArgs
  5. {
  6. private object _result;
  7. public object Result
  8. {
  9. get
  10. {
  11. return _result;
  12. }
  13. set
  14. {
  15. _result = value;
  16. HasResult = true;
  17. }
  18. }
  19. public bool HasResult { get; set; }
  20. }
  21. }