Loads a .NET assembly.
Details
Note that this is loaded in the single application domain that is created by rSharp, not a separate application domain.
See also
.C
which this function wraps
Examples
if (FALSE) { # \dontrun{
f <- file.path("SomeDirectory", "YourDotNetBinaryFile.dll")
f <- path.expand(f)
stopifnot(file.exists(f))
loadAssembly(f)
} # }