Microsoft.Scripting.ScopeVariable.SetValue C# (CSharp) 메소드

SetValue() 공개 메소드

Sets the current value in the scope.
public SetValue ( object value ) : void
value object
리턴 void
        public void SetValue(object value) {
            _value = value;
        }

Usage Example

예제 #1
0
 /// <summary>
 /// Sets the current value in the scope.
 /// </summary>
 public void SetValue(object value)
 {
     _firstVariable.SetValue(value);
 }