.Net and Load and Save format string (UNICODE,ANSI)

  • In .Net all strings are unicode,
    But to load a unicode string into TextDynamic I have to use a "ANSI" format string: TextDinamic.Memo.LoadFromString(docBody, false, "ANSI");
    Think it is not correct.
    As in this case when I have to use a "UNICODE" format?
    The same thing is with saving.
    Think that in case of ANSI format for Load and Save the in/out parameter has to be a byte[] array.(array of bytes). As only using array of bytes it is possible to use ANSI in .Net

    Thanks.