-
Notifications
You must be signed in to change notification settings - Fork 5.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Refactoring c# projects #544
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Added some in line comments. Also please keep formatting changes minimal if possible (unless missing formatting). Thank you
@codecop |
Thank you. Now I see, the original code was already inconsistent. That is a pity. So as background for you, the code should look the same as much as possible for both projects. From what I see here I think project files, GildedRose and Item are identical. Both |
|
Removed global.json
Hi, thanks to both of you for doing this, I'm happy to see these changes. I think I will ask @codecop to take another look and do the merge as he sees fit. |
Please provide your PR description below this line
NUnit/GildedRoseTests/TextTestFixture.cs
because the same logic is defined incsharp.NUnit/GildedRose/Program.cs
GildedRose(IList<Item> Items)
toGildedRose(IList<Item> items)
andIList<Item> Items;
toprivate readonly IList<Item> _items;
to be more conformant with C# .NET coding guidelines.