Highlights

Pointers & Strings: A Simple Understanding

* If you’re here then probably you are beginner and trying to quickly understand the topic. So here everything is defined very simple in points so you can quickly understand everything. Variables: A variable is something that contains different values at different times. In a Program, variable has; Name Type

Develop Your First UWP App Using JavaScript

If you are a Web Develop or have some familiarities with Web Languages and you want to develop UWP? Then congratulations! you can easily create UWP Apps by using Web Languages like HTML5, JS etc… So In order to Develop your First UWP App through Web Languages, first you should

Objects: Everything is an Object in C#

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

Create a Sample UWP App in C#

The core of this blog is about Microsoft Visual C#. But C# is mostly used to work with the visual Programming. Web Applications, Windows Desktop Applications, UWP Applications and so on… So here we will practice is by using UWP Apps. The UWP is the most entrusting, simple and best

Develop a Windows 10 App in C#

To Create a Windows 10 App using C#; Let’s Create a Universal Windows App in Microsoft Visual Studio; In the template Selection, check the Empty Project and chick OK; Microsoft Visual Studio will create some files for you in Solution Explorer; Now click upon MainPage.xaml, you will get the screen

Develop a Windows Desktop Application in C#

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

JumpStart with Microsoft Visual C#

Microsoft Visual C# is the Multi-Paradigm Programming Language encompassing strong typing, imperative, declarative, functional, generic, object-oriented (class-based), and component-oriented programming disciplines. With C#, one has got a great programming language and a valuable tool at his fingertips. Perhaps without giving credit to Visual Studio IDE is unfair with the most

Develop a C# Console Project

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

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
1 9 10 11 12 13 17

Authors

Follow Me

GoUp