Tools/Libraries

visualizing stack and heap with SharpLab

When I wanted to look at the IL of the C# code I wrote I used to create a new console application in visual studio and write the code and build it and view the DLL with ILSpy or dotPeek.

These days I’m using LINQPad to view the IL quickly.

Here is the alternative to that hectic setup, Sharplab.

SharpLab is developed by Andrey Shchekin. SharpLab is a similar tool you can use to Run, De-compile (C#, IL, JIT Asm) and visualizing syntax trees. You can also switch the C# language to whatever you want in SharpLab.

And the good thing about SharpLab is that you don’t need any tools except a web browser.

Visualizing stack/heap and boxing

Apart from viewing IL or viewing de-compiled C# code. SharpLab recently added a new feature to visualize .NET stack/heap and boxing.

Once done with writing or creating an object, you could just use Inspect.MemoryGraph(obj) statement to see if it is on stack/heap. You can also see the boxing happened on the objects.

This is how it looks like.

Visualizing stack/heap and boxing with SharpLab.io

Viewing structure of object in Memory (heap)

If you want to view the structure of an object in the memory, you can use Inspect.Heap(object) statement.

Let’s inspect a string value in the memory and here it is.

Visualizing object on the heap with SharpLab.io

Viewing structure of stack value

You can view structure of any stack value with Inspect.Stack(value) statement.

Lets view a value structure on stack

Visualizing value on stack with SharpLab.io

value.Inspect()

This is an alternative to write Console.WriteLine to view a value in the output window in SharpLab. Try it out.

Disqus Comments Loading...
Share
Published by
Karthik Chintala

Recent Posts

2 Good Tools To Test gRPC Server Applications

In this post, we’ll see how to test gRPC Server applications using different clients. And… Read More

11 months ago

Exploring gRPC project in ASP.NET Core

In this post, we'll create a new gRPC project in ASP.NET Core and see what's… Read More

1 year ago

Run dotnet core projects without opening visual studio

In this blog post, we’ll see how to run dotnet core projects without opening visual… Read More

1 year ago

Programmatically evaluating policies in ASP.NET Core

Programmatically evaluating policies is useful when we want to provide access or hide some data… Read More

1 year ago

Multiple authorization handlers for the same requirement in ASP.NET Core

We saw how we could set up policy-based authorization in our previous article. In this… Read More

1 year ago

Policy-Based Authorization in ASP.NET Core

What is policy-based authorization and how to set up policy-based authorization with handlers and policies… Read More

1 year ago

This website uses cookies.