Extern with constructor?

Monkey Forums/Monkey Programming/Extern with constructor?

malublu(Posted 2016) [#1]
Simple question:
How to make this:
Extern
	Class NativeClass
		Method New(param:Int)


This is working:
Function Create:NativeClass(param:Int)


in native code i simple write new NativeClass(param)

But why it's not working with new?