From the course: CLR Reflection for Developers

Unlock the full course today

Join today to access over 22,400 courses taught by industry experts or purchase this course individually.

Ildasm.exe demo

Ildasm.exe demo - Windows Tutorial

From the course: CLR Reflection for Developers

Start my 1-month free trial

Ildasm.exe demo

- Of course, if we're going to actually make use of this point class that we've put here in code, first thing we're going to need to do is we're going to need to build this particular project. So let's just go ahead and kick off Visual Studio to kick off the build here. We get a couple of warnings again because I haven't completely fleshed out everything that you should see with respect to a point, particularly if you're going to to do equals you should also get hash code, etc. But that doesn't really make the example any more compelling, so we're just going to live with the warnings for now. Now, once we've built this particular assembly, we want to be able to look at it using the Ildasm utility. To do that, you're going to need to bring up the developer command prompt that ships as a part of your Visual Studio installation, or, if you're doing this using the core CLR on Linux or Mac OS, you'll just need to make sure that the .NET tools are available on the path. We're going to surf…

Contents