hello.cpp needs to include hello.h
Of course C++ error messages make it sound complex. The language has dozens
of keywords, thousands of error messages.
> Can any one tell me how to resolve this issue;
>
[quoted text clipped - 13 lines]
> }
> }
This definition is inside namespace Wrapper.
> //hello.h
> #pragma once
[quoted text clipped - 9 lines]
>
> String^ Wrapper_Class::sayHello(void)
This prototype is in the global namespace. Additionally, it forward
declares that a namespace (you can't prototype class members outside the
class definition) Wrapper_Class exists containing a global function
sayHello. When the linker doesn't find it, it gives the unresolved token
error.
> Here is the ERROR message I keep getting
> error LNK2020: unresolved token (06000012)
[quoted text clipped - 6 lines]
> Thank you...
> JZ