This option controls whether the simpler using-declaration syntax should be preferred over the traditional using-statement block.
using var stream =
new FileStream(
"file.txt",
FileMode.Open);using (var stream =
new FileStream(
"file.txt",
FileMode.Open))
{ }