inline_csharp 0.1.1

Embed C# directly in Rust — evaluated at program runtime or at compile time
Documentation
1
2
3
4
5
6
7
#![doc = include_str!("../README.md")]

/// Re-export the proc macros so users only need to depend on this crate.
pub use inline_csharp_macros::{csharp, csharp_fn, ct_csharp};

/// Re-export the core error type and runtime helpers.
pub use inline_csharp_core::{CsharpError, expand_dotnet_args, run_csharp};