13 | | The difference between the version is if the length of the string is included or not. Having the size given in the constructor makes the constructor faster. Having the size also makes the code bigger, which is a problem when the code is executed infrequently. |
| 13 | The difference between the version is if the length of the string is included or not. Having the size given in the constructor makes the constructor faster. Having the size also makes the code bigger, which is a problem when the code is executed infrequently.[[BR]] |
| 14 | In general, use ASCIILiteral unless you can show improvement on a benchmark by using ConstructFromLiteral. |