DuckQueen
DuckQueen

Reputation: 800

How to create .NET 4 C# class instance in Nemerle?

How to create .NET 4 C# class instance in Nemerle for example simple System.Object (or mofe complex class from .DLL)?

Upvotes: 1

Views: 178

Answers (1)

Don Reba
Don Reba

Reputation: 14041

Same as in C#, except without the new keyword. Just make sure you are using the .NET 4.0 version of Nemerle. See the wiki for more information: https://github.com/rsdn/nemerle/wiki.

Upvotes: 3

Related Questions