String cannot use this type here without a top-level '^'

If you are using String in unmanaged code with managed extension you should include it as


String^ str = "This is string";

No comments:

Post a Comment

Golang: Http POST Request with JSON Body example

Go standard library comes with "net/http" package which has excellent support for HTTP Client and Server.   In order to post JSON ...