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
Copy file name to clipboardExpand all lines: CONTRIBUTING.md
+14-3Lines changed: 14 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
## How to Contribute
2
2
3
3
1. Follow the code style
4
-
```C#
4
+
```cs
5
5
if ()
6
6
{
7
7
@@ -16,7 +16,7 @@ catch (...)
16
16
17
17
}
18
18
19
-
if ()
19
+
if (...)
20
20
return;
21
21
22
22
for (inti=0; i<=1; i++)
@@ -32,15 +32,26 @@ while (...)
32
32
privateint_name;
33
33
publicintName;
34
34
publicintName { get; privateset; }
35
+
Donotusevar.
35
36
36
37
publicvoidExample(intargName)
37
38
{
38
39
39
40
}
41
+
42
+
using (...)
43
+
{
44
+
45
+
}
46
+
47
+
~bit
48
+
~(bit^0xFF)
49
+
((bit&0xFF) |0xFF) >>0xFF
40
50
```
41
51
42
52
2. Push changes to a new local branch to the 'dev' branch. ('contributor-feature' -> 'dev')
43
-
3. You are encouraged to start a PR early so we can spy on what you are working on!
53
+
3. You are encouraged to start a PR early so we can spy on what you are working on
0 commit comments