Reputation: 953
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
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