Browse Category

Microsoft Visual C#.

This Category is all about Microsoft Visual C#. : - )

Architecture of .NET Framework

.NET Framework is developed by Microsoft. The .NET Framework is Microsoft platform for Software Development. It provides a Universal Platform that let Microsoft Developers Program in same way and with the same languages regardless of whether for working for the Web, for Desktop or for Mobile. There’re also class libraries available for particular type of applications! So if someone working

C# Memory Management

In C#, the memory is allocated by dynamically at Runtime and don’t have to explicitly allocate memory. So you don’t need to worry about allocate memory and then reclaim it. It is done for you at backend by Garbage Collector process. CLR periodically checks memory heap. It looks for unreferenced

Structures

April 26, 2016
A Structure is a container, it can hold a bunch of variables. These variables can be of any type. It is a user defined data type used to group related data (i.e. variables) Each variable in a structure can have similar or different data type than other variables of that

Objects: Everything is an Object in C#

April 26, 2016
Microsoft Visual C# is an object-oriented language. This makes it similar to Java, C++ and many others. Not all object-oriented languages are the same. Some languages are mostly procedural and incorporate some object-oriented features. C#, however, is a strict object-oriented language. That means that all values are stored as objects

Develop a Windows Desktop Application in C#

April 25, 2016
Let’s create a Windows Desktop Application in C# using WPF (Windows Presentation Foundation)! Simply create a WPF Application Project in Microsoft Visual Studio; When you press OK to create the project. You’ll get a screen like here; The WPF is little bit interesting. It has visual interface. Its mean to

Develop a C# Console Project

April 25, 2016
The Best Way to learn any language or a technology is to learn it by development projects in it. In C# we can do project base learning is variety of different application framework! The Architecture of Visual C# Project is shown below; C# programs run on the .NET Framework, an

.NET Core

.NET Core 1.0  .NET Core 1.0 is a major new investment in the future of .NET and laying the foundation for decades to come. Still, it is in its early stage, and for some time you might still focus .NET Framework 4.6 depending on your application needs. But for many scenarios,

Authors

Follow Me

GoUp