[OT] C# can do all the interpolated strings now

WebFreak001 d.forum at webfreak.org
Thu Dec 9 15:28:09 UTC 2021


On Thursday, 9 December 2021 at 15:16:40 UTC, WebFreak001 wrote:
> [...]
>
> and if you want to actually access the tuple for variadic 
> template arguments (including the header) you could still do 
> this:
>
> ```d
> AliasSeq"hello $name"
> ```
>
> (or `alias I = AliasSeq;` and `I"hello $name"`)

this should have been:

```d
tuple"hello $name"
// or
alias I = tuple;
I"hello $name"
```


More information about the Digitalmars-d mailing list