You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Follow-up on #107 and #104 (comment), based on this article. After reading the article, I agree it would be better to distinguish between tuple element names and variables declared using tuple syntax.
So I propose to update the casing table in AV1702 like this:
Remove row "Tuple element"
Add row "Tuple element names"
Casing: Pascal
Examples: (string First, string Last) name = ("John", "Doe"); var name = (First: "John", Last: "Doe"); (string First, string Last) GetName() => ("John", "Doe");
Follow-up on #107 and #104 (comment), based on this article. After reading the article, I agree it would be better to distinguish between tuple element names and variables declared using tuple syntax.
So I propose to update the casing table in AV1702 like this:
Casing: Pascal
Examples:
(string First, string Last) name = ("John", "Doe");
var name = (First: "John", Last: "Doe");
(string First, string Last) GetName() => ("John", "Doe");
Casing: Camel
Examples:
(string first, string last) = ("John", "Doe");
var (first, last) = ("John", "Doe");
The text was updated successfully, but these errors were encountered: