Serhii Kheilyk
Serhii Kheilyk

Reputation: 953

How can I call "System.UnicodeString.UpperCase"?

Delphi documentation has page for System.UnicodeString.UpperCase, but compiler refuses to compile it.

How was it supposed to be used?

Upvotes: 1

Views: 1022

Answers (1)

David Heffernan
David Heffernan

Reputation: 613542

You cannot call that method from Delphi. That method is only available from Embarcadero C++.

For Delphi the equivalent is SysUtils.AnsiUpperCase.

Upvotes: 5

Related Questions