Skip to content

Latest commit

 

History

History
17 lines (15 loc) · 1.29 KB

IDump.md

File metadata and controls

17 lines (15 loc) · 1.29 KB

IDump Interface

An interface to implement dump methods. Make each method return the same method in your Logger instance.

public interface IDump

Derived
Logger
ModuleScript

Methods
Dump<T>(T, bool) Dumps all information that it can find of the type using reflection. This should only be used to debug.
Dump(bool, Expression<Func<object>>[]) Dumps all information about the variables specified. Each element uses the syntax () => varName. This should only be used to debug.
Dump(Expression<Func<object>>[]) Dumps all information about the variables specified. Each element uses the syntax () => varName. This should only be used to debug.