ValueTuple 命名约定

ValueTuple naming conventions

命名 ValueTuple 元素时,是否应该大写?

(string Name, int Index) rec;

(string name, int index) rec;

编辑:

似乎惯例是 PascalCase

参见:https://github.com/dotnet/runtime/issues/27939#issuecomment-531420515

编辑 2

我选择始终使用驼峰命名法。我认为 'ValueTuple' 只是一组值,几乎专门用于从函数返回多个值。我从不使用 ValueTuple' 作为状态,并且总是更喜欢 records 。 .

将元组视为变量包,因此,惯例是使用驼峰式大小写。