Ranter
Join devRant
Do all the things like
++ or -- rants, post your own rants, comment on others' rants and build your customized dev avatar
Sign Up
Pipeless API
From the creators of devRant, Pipeless lets you power real-time personalized recommendations and activity feeds using a simple API
Learn More
Comments
-
fermar72986yI think, in the .Net environment we have good APIs in general. Lots of usages can be inferred just by the naming.
Example:
"I want to serialize json" (newtonsoft)
-> JsonSerializer
"I want to setup this mock to return a specific value" (moq)
-> ...Setup(<selector>). Returns(<value>) -
I've never had to memorize anything. Documentation is your friend. The rest is learned from repetition.
-
@iamavalos thank you for reply! So whenever I need something I can refer to the official Microsoft docs? What about the case I don’t understand what I need? Do I need to study guidelines Microsoft provide from scratch?
-
@fermar7 in your example, yes everything looks simple
And instinctive. But how do I know which setup and configuration I need when I develop something? -
fermar72986y@creativeJay regarding this I would also, as the others already said, stick to official docs or even "unofficial" ones like blog articles for example.
I think very important for this is to express what you want to do in a short and condense phrase to be able to use google or search indices in documentations to find what you need. -
nam178875796yTip: you bind the "quick fix" command to a hot key.
Type the class name that you can remember, for example "convert" to convert base64, etc
Visual studio now says error, cursor on the error and press the quickfix hot key. It will suggest and add the full name for it.
Quickfix can also add null check, implement props, etc.. for you -
Thank you all of you! All of your advices and reply made me feel I have people who support and be with me :)
Related Rants
How do most ASP.NET developers memorize every libraries and classes? Do you have any tips?
question
c#
libraries
microsoft
classes
asp.net