Our Insights
Innovative Ways - Satisfied Clientele
Innovative Ways - Satisfied Clientele
Ishan Sarvaiya - September 23, 2021
Table of Content 1. Single Responsibility Principle (SRP) 2. Open-Closed Principle (OCP) 3. Liskov Substitution Principle (LSP) 4. Interface Segregation Principle (ISP) 5. Dependency Inversion Principle (DIP) 6. Conclusion In C#, SOLID design principles are basic design principles. SOLID Principles enable us to overcome...
Ishan Sarvaiya - August 30, 2021
Table of Content 1. What is Add-in in Outlook? 2. Outlook Object Model 3. Creating Add-in 4. Testing 5. Conclusion What is Add-in in Outlook? In Outlook, Add-ins are programs that help us to automate certain tasks according to our ease like when we view or create messages. i.e., Trello, Skype, Zoom, Evernote, etc. Outlook Object Model When we are talking about Outlook add-in, we must know the basics of the following objects: Application:...
iFour Team - February 21, 2021
In a simple application sharing library is a fundamental requirement. The shared library is used so that developers can reuse packages as a library in a project and we can also upload a project to NUGET.org so that other users can download and install these projects into their project using the library. Table of Content 1. Why shared code across projects or assemblies? 2. Share Library through .Net Standard or concept of PCL 3. Multi-targeting Framework 4. Conclusion Why...
iFour Team - February 18, 2021
When you are developing the websites with JavaScript, you can use the localStorage and sessionStorage. In the localStorage and sessionStorage, the data stores in key-value pair in the user’s web browser. It is also known as sandboxed for each website, you can access only your data store on every website, and you can’t access to localStorage and sessionStorage objects being saved from another website. Table of Content ...
iFour Team - December 15, 2020
Unit testing is used to test individual components or units to determine if there are any issues by the developer himself. The unit testing is used to validate that each component of the software code performs as expected. The unit testing is concerned with the functional correctness of standalone modules and it is done by the developer during the development phase of an application. Table of Content 1. Why do...