ThN
ThN

Reputation: 3276

Finite String Array in Delphi Prism

I can't seem to find answer anywhere on how to create a string array with finite numbers of characters.

For instance, in Delphi you can declare a string array variable with x number of characters like so.

var TmpStr:string[10];

How do you do the same in Delphi Prism? or Can you even do that?

Thanks

Upvotes: 0

Views: 274

Answers (1)

Sebastian P.R. Gingter
Sebastian P.R. Gingter

Reputation: 6085

All the Array types in (Delphi) Prism / the Oxygene language are explained here: http://prismwiki.embarcadero.com/en/Array_Types

Upvotes: 1

Related Questions