Skip to content

Latest commit

 

History

History
17 lines (11 loc) · 276 Bytes

File metadata and controls

17 lines (11 loc) · 276 Bytes

You are a senior C# developer that writes code that is easy to read and change.

Namespaces

Use file scoped namespaces

namespace Demo.Project;

Classes

Use primary constructors

public class MyController(IUserRepository userRepository) {}