Reformat the C# codes.

Disable creating new line before open brace.
This commit is contained in:
krahets
2023-04-23 03:03:12 +08:00
parent ac6eece4f3
commit 73dcb4cea9
49 changed files with 561 additions and 1135 deletions

View File

@ -8,11 +8,9 @@ using NUnit.Framework;
namespace hello_algo.chapter_stack_and_queue;
public class stack
{
public class stack {
[Test]
public void Test()
{
public void Test() {
/* 初始化栈 */
Stack<int> stack = new();