System.Linq.Expressions.Error.NonLocalJumpWithValue C# (CSharp) Méthode

NonLocalJumpWithValue() static private méthode

InvalidOperationException with message like "Cannot jump to non-local label '{0}' with a value. Only jumps to labels defined in outer blocks can pass values."
static private NonLocalJumpWithValue ( object p0 ) : Exception
p0 object
Résultat Exception
        internal static Exception NonLocalJumpWithValue(object p0)
        {
            return new InvalidOperationException(Strings.NonLocalJumpWithValue(p0));
        }
        /// <summary>
Error