System.Linq.Expressions.Strings.AmbiguousJump C# (CSharp) 메소드

AmbiguousJump() 정적인 개인적인 메소드

A string like "Cannot jump to ambiguous label '{0}'."
static private AmbiguousJump ( object p0 ) : string
p0 object
리턴 string
        internal static string AmbiguousJump(object p0) => SR.Format(SR.AmbiguousJump, p0);

Usage Example

예제 #1
0
 internal static Exception AmbiguousJump(object p0)
 {
     return(new InvalidOperationException(Strings.AmbiguousJump(p0)));
 }
Strings