API Testing through Postman
Introduction: - An application programming interface (API) is a computing interface which defines interactions between multiple software intermediaries. It defines the kinds of calls or requests that can be made,…
This category includes C# and OOPs concepts with design approaches.
Introduction: - An application programming interface (API) is a computing interface which defines interactions between multiple software intermediaries. It defines the kinds of calls or requests that can be made,…
There are numerous benefits to writing unit tests; they help with regression, provide documentation, and facilitate good design. However, hard to read and brittle unit tests can wreak havoc on…
Object NameNotationLengthPluralPrefixSuffixAbbreviationChar MaskUnderscoresClass namePascalCase128NoNoYesNo[A-z][0-9]NoConstructor namePascalCase128NoNoYesNo[A-z][0-9]NoMethod namePascalCase128YesNoNoNo[A-z][0-9]NoMethod argumentscamelCase128YesNoNoYes[A-z][0-9]NoLocal variablescamelCase50YesNoNoYes[A-z][0-9]NoConstants namePascalCase50NoNoNoNo[A-z][0-9]NoField namecamelCase50YesNoNoYes[A-z][0-9]YesProperties namePascalCase50YesNoNoYes[A-z][0-9]NoDelegate namePascalCase128NoNoYesYes[A-z]NoEnum type namePascalCase128YesNoNoNo[A-z]No 1. Do use PascalCasing for class names and method names: public class ClientActivity { public void…
Rules Anything in master is in a deployable state at all times.To work on something new, create a new branch off of the head of master and give it a…
In .net core framework applications, appsettings are stored in json format unlike other web applications in asp.net (web forms or MVC) framework. You might require to have multiple connectionstrings in…
Have you encountered error ever - "Can not implicitly convert byte to byte[]"? Here is the fix of it to convert byte to byte[]. This is quite basic error and…
1. Download and save nuget.exe from https://www.nuget.org/downloads . 2. Create Manifest file using command : nuget.exe spec . After command execution it generates new file in same folder named as…
Hi, When you create any web application, console app or any other apps, you need to keep connection strings, passwords or any other sensitive information in config file. We can…
It's one of the commonly asked questions in interview to know understanding of Interface and Abstract class. Generally developers know about what they are as per syntax and basic behaviors…