How to open a metadata in C #

2

I have a ZipFile class in my project. In it there is a method called ExtractAll , which is the method used in my file extraction routine. I need to look at this method (if it is possible) because when I extract the zip file, I have pasta with multiple pastas inside. This folder looks like this:

ws -> tiss -> v3 -> 02 -> 00

In the 00 folder there is only one file and this is the last folder of unzip and when this happens, the last file in the last folder in the last sequence is not being extracted. Can you open the class or not? Is there a solution for this?

    
asked by anonymous 10.03.2016 / 12:40

1 answer

2

One way to visualize a method in a dll is by using a decompiler, such as Reflector .

To understand a bit more about decompilers, I suggest you take a look at this question here:

10.03.2016 / 13:49