dotnetdll 0.1.3

A framework for reading and writing .NET metadata files, such as C# library DLLs.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#[macro_use]
mod utils {
    macro_rules! throw {
        ($($arg:tt)*) => {
            return Err(scroll::Error::Custom(format!($($arg)*)))
        }
    }
}

pub mod cli;
pub mod heap;
pub mod il;
pub mod metadata;
pub mod method;
pub mod signature;
pub mod stream;