In this post on C# Basic Examples, you will learn some of the simple code examples that you must know to start learning the C# language. In fact, these are the basic examples that we do to learn any new programming language. As the C# is an object-oriented language, so we can only write code […]
Private and Static Constructors in C#
In this post, I will cover Private and Static Constructors in C#. Private constructors restrict the creation of objects. In fact, if the private constructor is there, you cannot create objects in a similar fashion. You can only use private constructors inside some method of that class only. In contrast, if you define a constructor […]
Constructors in C#
Constructors in C# create the objects. Basically, the compiler provides a special function in a class called a constructor which it invokes automatically on the creation of an object. In this post, you will learn three types of constructors used in C# programming language – the default constructor, parameterized constructor, and the copy constructor. However, […]
C# Arrays
C# Arrays refer to the collection of several values all belonging to the same data type. I will explain C# Arrays with a few simple examples. So, if even if you are not familiar with other programming languages, you will not have any difficulty in understanding. Let us discuss the declaration syntax first. Array Declaration […]
A Brief Overview of Laravel
Welcome to the post on A Brief Overview of Laravel. Here you will learn the basic concepts and features of Laravel. Basically, Laravel is a Backend PHP Framework for developing web apps. In fact, you can build a complete CMS (Content Management System) using Laravel. Since the Laravel is a PHP framework, therefore you need […]
Getting Started with C Programming
In this post on Getting Started with C Programming, I will cover some of the basic programs in C programming language. Before writing the code, let us have some overview of the C programming language. Overview – Getting Started with C Programming The c programming language is a simple, general-purpose programming language. Additionally, it is […]
Just-In-Time (JIT) Compiler
Just-In-Time (JIT) Compiler is a part of the .NET Framework. This component makes the execution of a .NET program more efficient by translating those parts of code that are absolutely necessary. Hence, JIT doesn’t translate the whole of the MSIL code. Overview of JIT Compiler Just-In-Time (JIT) Compiler is a component of Common Language Runtime […]
Assemblies in .NET
Assemblies in .NET offer many benefits to the software development in .NET. The process of compilation of source code to the MSIL code creates Assemblies in .NET. Basically, they are fundamental building blocks in .NET. Also, we refer to them as the unit of deployment. Assemblies in .NET Offer Following Benefits Assemblies are the Unit […]
Compilation and Execution Plan of .NET
Compilation and Execution plan of .NET is a two-step process. In other words, the source code developed in the .NET environment is not translated directly to the machine code. Rather, it is first converted into some kind of intermediate-level code. To emphasize further, The .NET compiler compiles the source code to an intermediate level code. […]
Standard Controls in Windows Forms Application
A Windows Forms Application is a single-user application and runs on the desktop of the computer. Likewise, it is not designed to run as a web application. For that purpose, you will develop an application with ASP.NET if you want to use .NET technology. In this post, I will discuss some of the standard controls […]