当前位置: 首页>>代码示例>>C#>>正文


C# InterpretedFrame.Push方法代码示例

本文整理汇总了C#中System.Management.Automation.Interpreter.InterpretedFrame.Push方法的典型用法代码示例。如果您正苦于以下问题:C# InterpretedFrame.Push方法的具体用法?C# InterpretedFrame.Push怎么用?C# InterpretedFrame.Push使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在System.Management.Automation.Interpreter.InterpretedFrame的用法示例。


在下文中一共展示了InterpretedFrame.Push方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: Run

 public override int Run(InterpretedFrame frame)
 {
     object obj2 = frame.Pop();
     object obj3 = frame.Pop();
     frame.Push(ScriptingRuntimeHelpers.BooleanToObject((obj3 != null) && (obj3.GetType() == obj2)));
     return 1;
 }
开发者ID:nickchal,项目名称:pash,代码行数:7,代码来源:TypeEqualsInstruction.cs

示例2: Run

 public override int Run(InterpretedFrame frame)
 {
     IStrongBox[] boxes = new IStrongBox[this._count];
     for (int i = boxes.Length - 1; i >= 0; i--)
     {
         boxes[i] = (IStrongBox) frame.Pop();
     }
     frame.Push(System.Management.Automation.Interpreter.RuntimeVariables.Create(boxes));
     return 1;
 }
开发者ID:nickchal,项目名称:pash,代码行数:10,代码来源:RuntimeVariablesInstruction.cs

示例3: Run

 public override int Run(InterpretedFrame frame)
 {
     int[] lengths = new int[this._rank];
     for (int i = this._rank - 1; i >= 0; i--)
     {
         lengths[i] = (int) frame.Pop();
     }
     Array array = Array.CreateInstance(this._elementType, lengths);
     frame.Push(array);
     return 1;
 }
开发者ID:nickchal,项目名称:pash,代码行数:11,代码来源:NewArrayBoundsInstruction.cs

示例4: Run

 public override int Run(InterpretedFrame frame)
 {
     StrongBox<object>[] boxArray;
     if (this.ConsumedStack > 0)
     {
         boxArray = new StrongBox<object>[this.ConsumedStack];
         for (int i = boxArray.Length - 1; i >= 0; i--)
         {
             boxArray[i] = (StrongBox<object>) frame.Pop();
         }
     }
     else
     {
         boxArray = null;
     }
     Delegate delegate2 = this._creator.CreateDelegate(boxArray);
     frame.Push(delegate2);
     return 1;
 }
开发者ID:nickchal,项目名称:pash,代码行数:19,代码来源:CreateDelegateInstruction.cs

示例5: Run

 public override int Run(InterpretedFrame frame)
 {
     object obj2;
     object[] parameters = new object[this._argCount];
     for (int i = this._argCount - 1; i >= 0; i--)
     {
         parameters[i] = frame.Pop();
     }
     try
     {
         obj2 = this._constructor.Invoke(parameters);
     }
     catch (TargetInvocationException exception)
     {
         ExceptionHelpers.UpdateForRethrow(exception.InnerException);
         throw exception.InnerException;
     }
     frame.Push(obj2);
     return 1;
 }
开发者ID:nickchal,项目名称:pash,代码行数:20,代码来源:NewInstruction.cs

示例6: Run

 public override int Run(InterpretedFrame frame)
 {
     char ch = (char) frame.Pop();
     frame.Push(((char) frame.Pop()) > ch);
     return 1;
 }
开发者ID:nickchal,项目名称:pash,代码行数:6,代码来源:GreaterThanInstruction.cs

示例7: Run

 public override int Run(InterpretedFrame frame)
 {
     ushort num = (ushort) frame.Pop();
     frame.Push(((ushort) frame.Pop()) < num);
     return 1;
 }
开发者ID:nickchal,项目名称:pash,代码行数:6,代码来源:LessThanInstruction.cs

示例8: Run

 public override int Run(InterpretedFrame frame)
 {
     frame.Push(frame.Pop() == frame.Pop());
     return +1;
 }
开发者ID:40a,项目名称:PowerShell,代码行数:5,代码来源:EqualInstruction.cs

示例9: Run

 public override int Run(InterpretedFrame frame)
 {
     frame.Push(((bool) frame.Pop()) != ((bool) frame.Pop()));
     return 1;
 }
开发者ID:nickchal,项目名称:pash,代码行数:5,代码来源:NotEqualInstruction.cs

示例10: Run

 public override int Run(InterpretedFrame frame)
 {
     var ret = new IStrongBox[_count];
     for (int i = ret.Length - 1; i >= 0; i--)
     {
         ret[i] = (IStrongBox)frame.Pop();
     }
     frame.Push(RuntimeVariables.Create(ret));
     return +1;
 }
开发者ID:40a,项目名称:PowerShell,代码行数:10,代码来源:LocalAccess.cs

示例11: Run

 public override int Run(InterpretedFrame frame)
 {
     Byte right = (Byte)frame.Pop();
     frame.Push(((Byte)frame.Pop()) > right);
     return +1;
 }
开发者ID:40a,项目名称:PowerShell,代码行数:6,代码来源:GreaterThanInstruction.cs

示例12: Run

 public override int Run(InterpretedFrame frame)
 {
     frame.Push(((ulong) frame.Pop()) == ((ulong) frame.Pop()));
     return 1;
 }
开发者ID:nickchal,项目名称:pash,代码行数:5,代码来源:EqualInstruction.cs

示例13: Run

 public override int Run(InterpretedFrame frame)
 {
     frame.Push(((bool) frame.Pop()) ? ScriptingRuntimeHelpers.False : ScriptingRuntimeHelpers.True);
     return 1;
 }
开发者ID:nickchal,项目名称:pash,代码行数:5,代码来源:NotInstruction.cs

示例14: Run

 public override int Run(InterpretedFrame frame)
 {
     frame.Push(((SByte)frame.Pop()) != ((SByte)frame.Pop()));
     return +1;
 }
开发者ID:40a,项目名称:PowerShell,代码行数:5,代码来源:NotEqualInstruction.cs

示例15: Run

 public override int Run(InterpretedFrame frame)
 {
     Double right = (Double)frame.Pop();
     frame.Push(((Double)frame.Pop()) < right);
     return +1;
 }
开发者ID:40a,项目名称:PowerShell,代码行数:6,代码来源:LessThanInstruction.cs


注:本文中的System.Management.Automation.Interpreter.InterpretedFrame.Push方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。