Gets the debug information for currently executing code.

Namespace: MonoSoftware.MonoX.Extensions
Assembly: MonoX (in MonoX.dll) Version: 5.1.40.5065 (5.1.40.5065)

Syntax

C#
public static string GetDebugInformation(
	this Object obj,
	string message
)
Visual Basic
<ExtensionAttribute> 
Public Shared Function GetDebugInformation ( 
	obj As Object,
	message As String
) As String
Visual C++
public:
[ExtensionAttribute]
static String^ GetDebugInformation(
	Object^ obj, 
	String^ message
)
F#
static member GetDebugInformation : 
        obj : Object * 
        message : string -> string 

Parameters

obj
Type: System..::..Object
Object instance
message
Type: System..::..String
Optional message

Return Value

Type: String
Formatted debug information

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type Object. 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).

See Also