String Marshalling

  • Thread starter Thread starter Andrew McGrath
  • Start date Start date
A

Andrew McGrath

Is there a limit to how much text (ie WCHAR*) can be marshalled across using
something like

string MyString = Marshal.PtrToStringUni(LParam);

Is there a 1K limit or something?

Thanks

Andrew
 
No, there's no limit. String size would be limited by available memory,
though.

Best regards,

Ilya

This posting is provided "AS IS" with no warranties, and confers no rights.
--------------------
 
Back
Top