[C#] static, readonly 등 modifier 순서 강제하기 (.editorconfig)
이전에 다루었던 C# Coding Style 중에 이런 규칙이 있다.( 2024.07.05 - [Programming/C#] - C# Coding Style )When used on static fields, readonly should come after static (e.g. static readonly not readonly static)..editorconfig 파일은 다음과 같이 순서가 설정되어 있다.csharp_preferred_modifier_order = public,private,protected,internal,static,extern,new,virtual,abstract,sealed,override,readonly,unsafe,volatile,asyncreadonly static, s..
2024. 8. 14.