System.Linq.Expressions.Strings.NonLocalJumpWithValue C# (CSharp) Method

NonLocalJumpWithValue() static private method

A string 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 ) : string
p0 object
return string
        internal static string NonLocalJumpWithValue(object p0) => SR.Format(SR.NonLocalJumpWithValue, p0);

Usage Example

 internal static Exception NonLocalJumpWithValue(object p0)
 {
     return(new InvalidOperationException(Strings.NonLocalJumpWithValue(p0)));
 }
Strings