System.Linq.Expressions.Strings.MustRewriteToSameNode C# (CSharp) Метод

MustRewriteToSameNode() статический приватный Метод

A string like "When called from '{0}', rewriting a node of type '{1}' must return a non-null value of the same type. Alternatively, override '{2}' and change it to not visit children of this type."
static private MustRewriteToSameNode ( object p0, object p1, object p2 ) : string
p0 object
p1 object
p2 object
Результат string
        internal static string MustRewriteToSameNode(object p0, object p1, object p2) => SR.Format(SR.MustRewriteToSameNode, p0, p1, p2);

Usage Example

Пример #1
0
 internal static Exception MustRewriteToSameNode(object p0, object p1, object p2)
 {
     return(new InvalidOperationException(Strings.MustRewriteToSameNode(p0, p1, p2)));
 }
Strings