System.Linq.Expressions.Expression.Loop C# (CSharp) Method

Loop() public static method

Creates a LoopExpression with the given body.
public static Loop ( Expression body ) : LoopExpression
body Expression The body of the loop.
return LoopExpression
        public static LoopExpression Loop(Expression body)
        {
            return Loop(body, @break: null);
        }

Same methods

Expression::Loop ( Expression body, LabelTarget @break ) : LoopExpression
Expression::Loop ( Expression body, LabelTarget @break, LabelTarget @continue ) : LoopExpression

Usage Example

Ejemplo n.º 1
0
        private static Func <int[], int[]> GenerateCopyExpression()
        {
            var ctor = typeof(int[]).GetConstructor(new[] { typeof(int) });
            var get  = typeof(int[]).GetMethod("Get", new[] { typeof(int) });
            var set  = typeof(int[]).GetMethod("Set", new[] { typeof(int), typeof(int) });

            var p1     = Exp.Parameter(typeof(int[]));
            var v1     = Exp.Variable(typeof(int[]));
            var v2     = Exp.Variable(typeof(int));
            var @break = Exp.Label();

            var block = Exp.Block(
                new[] { v1, v2 },
                Exp.Assign(v1, Exp.New(ctor, Exp.Property(p1, "Length"))),
                Exp.Assign(v2, Exp.Constant(0)),
                Exp.Loop(
                    Exp.IfThenElse(
                        Exp.LessThan(v2, Exp.Property(p1, "Length")),
                        Exp.Block(
                            Exp.Call(v1, set, v2, Exp.Call(p1, get, v2)),
                            Exp.AddAssign(v2, Exp.Constant(1))
                            ),
                        Exp.Break(@break)
                        ),
                    @break),
                v1
                );

            return(Exp.Lambda <Func <int[], int[]> >(block, new ParameterExpression[] { p1 }).Compile());
        }
All Usage Examples Of System.Linq.Expressions.Expression::Loop
Expression