experiments/csharp/E018-OneLineMultiAssignment/Program.cs

6 lines
143 B
C#
Raw Normal View History

2024-05-04 21:16:52 +01:00
string[] foo;
bool ready = (foo = ["1", "2"]).Length <= int.MaxValue;
Console.WriteLine(ready);
Console.WriteLine(string.Join(", ", foo));