0
agox
3y

I've a classic class in C#: RelayCommand. It's just a general purpose ICommand implementation. I want to use a dedicated namespace for it. I cannot use MyCompany.RelayCommand because using the same-class-name as namespace causes problems. What do you suggest?

Comments
  • 2
    You could use MyCompany.Commands
    Then you can add other command classes in the future.
  • 0
    @siggi It's a great idea! Only I don't think I'll have other commands. But it worth considering.
Add Comment