hello,
i am trying to wrap an unmanaged C++ code to managed one so that i can use it within c#, and i am using IJW - "It Just Works" - method for that. In the code, there is a function which takes a "filename" as one of its arguments and the type of that is "char*". In the documents of msdn, "char*" is mapped to String[in] or StringBuilder[in,out] by marshaller. although i searched in the goggle, i couldnt find any kinds of simple-because I am not an experienced enough- sample code that uses IJW method. I found always the ones which uses PInvoke method.
Can you help me with marshalling "char*" type with IJW method by a simple sample code?
Thanks!