Our Insights
Innovative Ways - Satisfied Clientele
Innovative Ways - Satisfied Clientele
Kapil Panchal - March 03, 2021
In this blog, we’ll discuss garbage collection guidelines. The .NET Framework provides garbage functionality and it is used to manage memory for all applications. When we use the New operator to create an object, at that time the object’s memory is acquired from the managed heap. When the GC managed that adequate garbage has accrued that it is sufficient to do that, which are performing a collection to free unused memory. All processes are handled by the. NET, but here a number of things...
Kapil Panchal - February 26, 2021
In this blog, we will discuss the new most recent release version of visual studio 2019. And we will also highlight other release features including XAML designer, code editor, XAML Hot Reload, improvements to XAML live debugging tools, packing, and extensibility. After one year the release of the next baseline the version 16.7 will be supported with fixes and security updates. Version 16.4 was the last serving baseline, now that version 16.7 is available. Version 16.5 and 16.6 are no...
Kapil Panchal - February 22, 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. Why shared code across projects or assemblies? Code Reuse: Shared library enables code reusability by placing code into the library and the developer should not...
Kapil Panchal - February 21, 2021
For a developer a main challenge is to debug and optimize queries that are written for the request made to the server. It is impossible to get the exact time of the queries request for each page. Usually, developer considers count such as one, two, three and calculate the average but this is not a solution and as a developer, this is not we want. In developer's tool network tab provide information about the time per the request made for a page load but that is not enough for a developer...
Kapil Panchal - 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. The data stores carefully because this data is volatile. Volatile means not permanent...