Skip to main content

Posts

Showing posts with the label ASP.NET Core 2

Bundling and Minifying In ASP.NET Core Applications

Bundling and Minification are two distinct performance optimizations you can apply in a web app. Used together, bundling and Minification improves performance by reducing the number of server requests and reducing the size of the requested static assets. Bundling combines multiple files into a single file. Bundling reduces the number of server requests that are necessary to render a web asset, such as a web page. Minification removes unnecessary characters from code without altering functionality. The result is a significant size reduction in requested assets (such as CSS, images, and JavaScript files). An Easier Way - The Bundler and Minifier Extension, Following Steps: 1.       Go to the Visual studio > 2.       Go to the Extensions (near to visual studio tool) 3.       Go to the Manage Extensions 4.       Now, Install the Bundler and Minification 5.  ...

.NET Core MVC Interview Questions and Answers

» OOPs Interview Questions Object Oriented Programming (OOP) is a technique to think a real-world in terms of objects. This is essentially a design philosophy that uses a different set of programming languages such as C#... Posted In .NET » .Net Constructor Interview Questions A class constructor is a special member function of a class that is executed whenever we create new objects of that class. When a class or struct is created, its constructor is called. A constructor has exactly the same name as that of class and it does not have any return type… Posted In .NET » .NET Delegates Interview Questions Delegates are used to define callback methods and implement event handling, and they are declared using the "delegate" keyword. A delegate in C# is similar to function pointers of C++, but C# delegates are type safe… Posted In .NET » ASP.Net C# Interview Questions C# was developed by Microsoft and is used in essentially all of their products. It is mainly used for ...

.NET Core Interview Questions and Answers

What Is .NET Core? The .NET Core is an open-source , cross-platform that runs on Windows, macOS and Linux developed by Microsoft. It also supports almost all things that .NET supported. The .NET Core is higher performance, quick leaner, and lots of improvements of .NET The .NET Core provides .net CLI (Command Line Interface) The .NET Run-time provides a type system, assembly loading, a garbage collector, native interop and other basic services. The Key points of .NET Core are: 1.       Open source 2.       Cross-platform 3.       Flexible deployment 4.       CLI - Command-line tools 5.       Compatible What Are Technologies Discontinued in .NET Core? 1.       Reflection 2.       Remoting 3.       Sandboxing 4.       Binary seri...