experiments/csharp/E018-OneLineMultiAssignment/Program.cs

6 lines
143 B
C#
Raw Permalink Normal View History

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