I want to migrate my code from Laravel PHP to ASP.Net Framework 4.6.1 C#.
In Laravel I can use function dd('test') or dd($variabel). Which is useful in-order to dump any variable's values with its data-type.
How can i achieve this same thing in ASP.NET?
