[This is preliminary documentation and is subject to change.]
Converts expression tree to simple textual form for debugging
Namespace: NFXAssembly: NFX (in NFX.dll) Version: 3.0.0.1 (3.0.0.1)
public static string ToDebugView(
this Expression expr,
int indent = 0
)
public static string ToDebugView(
this Expression expr,
int indent = 0
)
<ExtensionAttribute>
Public Shared Function ToDebugView (
expr As Expression,
Optional indent As Integer = 0
) As String
<ExtensionAttribute>
Public Shared Function ToDebugView (
expr As Expression,
Optional indent As Integer = 0
) As String
public:
[ExtensionAttribute]
static String^ ToDebugView(
Expression^ expr,
int indent = 0
)
public:
[ExtensionAttribute]
static String^ ToDebugView(
Expression^ expr,
int indent = 0
)
static member ToDebugView :
expr : Expression *
?indent : int
(* Defaults:
let _indent = defaultArg indent 0
*)
-> string
static member ToDebugView :
expr : Expression *
?indent : int
(* Defaults:
let _indent = defaultArg indent 0
*)
-> string
Return Value
Type:
StringUsage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type
Expression. When you use instance method syntax to call this method, omit the first parameter. For more information, see
Extension Methods (Visual Basic) or
Extension Methods (C# Programming Guide).