Re: can't use Unicode in C# with cb65



I haven't used the c# version, but in the straight delphi win32
version, you simply cast the output of f4str or f4memostr to a widechar

r4Memo : Result := PWideChar( f4MemoStr( d4FieldJ( Tbl,
Num))); {retrieve the chosen field}
r4unicode : Result := PWideChar( ( f4Str( d4FieldJ( Tbl, Num))));
{retrieve the chosen field}

.