暂无描述
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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. }