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


C# Proc.Call方法代码示例

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


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

示例1: RubyPart

        public RubyPart(RubyPartDefinition definition, Proc createInstance)
        {
            if (definition == null)
                throw new ArgumentNullException("definition");
            if (createInstance == null)
                throw new ArgumentNullException("createInstance");

            _definition = definition;
            _instance = new DelayedInit<object>(() => createInstance.Call(createInstance));
        }
开发者ID:JogoShugh,项目名称:IronRubyMef,代码行数:10,代码来源:RubyPart.cs

示例2: Trap

        public static object Trap(
            RubyContext/*!*/ context, 
            object self, 
            object signalId, 
            Proc proc) {

            if ((signalId is MutableString) && ((MutableString)signalId).ConvertToString() == "INT") {
                context.InterruptSignalHandler = delegate() { proc.Call(); };
            } else {
                // TODO: For now, just ignore unknown signals. This should be changed to throw an
                // exception. We are not doing it yet as it is close to the V1 RTM, and throwing
                // an exception might cause some app to misbehave whereas it might have happenned
                // to work if no exception is thrown
            }
            return null;
        }
开发者ID:rudimk,项目名称:dlr-dotnet,代码行数:16,代码来源:Signal.cs

示例3: Call

 public static object Call(Proc/*!*/ self, object arg1) {
     RequireParameterCount(self, 1);
     return self.Call(arg1);
 }   
开发者ID:jxnmaomao,项目名称:ironruby,代码行数:4,代码来源:ProcOps.cs

示例4: ToRequestPredicate

 public static Func<IRequest, bool> ToRequestPredicate(Proc proc)
 {
     return r => (bool)proc.Call(r);
 }
开发者ID:schambers,项目名称:ninject,代码行数:4,代码来源:Workarounds.cs

示例5: Call

 public static object Call(BlockParam block, Proc/*!*/ self, object arg1, object arg2, object arg3, object arg4)
 {
     RequireParameterCount(self, 4);
     return self.Call(block != null ? block.Proc : null, arg1, arg2, arg3, arg4);
 }
开发者ID:TerabyteX,项目名称:main,代码行数:5,代码来源:ProcOps.cs


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