You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Ivan Kozhin edited this page Sep 7, 2020
·
4 revisions
From day to day development when we use .NET standard library, we could get the idea "that little feature would be useful to have in all my projects". It might be just a few lines of code you keep repeating around. Usually, in those cases, we do Helpers or Utils classes that migrate from project to project.
We tried to collect such little things in one place for the ability to use it in all projects. Also, we focused on having good documentation that lists all helpers.
Top 10
StringUtils.ParseOrDefault. Parse a string and if not possible return the default value.
DictionaryUtils.GetValueOrDefault. Return value by key and if the key not found return the default value.