https://github.com/gerardo-lijs/regions-alternatives-sample
Sample project to show the alternatives to C# regions
https://github.com/gerardo-lijs/regions-alternatives-sample
partialclass regions sample
Last synced: about 2 months ago
JSON representation
Sample project to show the alternatives to C# regions
- Host: GitHub
- URL: https://github.com/gerardo-lijs/regions-alternatives-sample
- Owner: gerardo-lijs
- Created: 2019-04-28T17:21:22.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2019-04-28T17:41:35.000Z (over 6 years ago)
- Last Synced: 2025-03-14T00:31:10.629Z (7 months ago)
- Topics: partialclass, regions, sample
- Language: C#
- Homepage:
- Size: 25.4 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Regions Alternatives Samples
Sample project to show the alternatives to C# regions## Regions-vs-Partial-Sample
The basic idea is that if the responsibility of the class can't be split, I prefer to use partial classes.It makes it easy to find each "group" of methods, it helps with git push because two developers can work in separate files and you can search easily with VS without ReSharper


