The main purpose of "Dot Net Labs" provide the dot net program. You can learn dot net, .Net Core, C#, SQL, Linq step-by-step.

The main purpose of "Dot Net Labs" provide the dot net program. You can learn dot net, .Net Core, C#, SQL, Linq step-by-step.

Saturday, 30 May 2015

SIZEOF Keyword Example : It shows the size of Data types


We will learn about sizeof() with the help of the example. Here sizeof() is an operator in c#. It used to obtain the size of a data type in bytes and works only on compile-time. It does not work with the variable and instance.Example: using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace DataTypesDemo { ...

Wednesday, 27 May 2015

How to save C# program in Notepad


To save a C# program using Notepad, you can follow these steps:Open NotepadOpen the Notepad application on your computer. You can usually find it by searching for "Notepad" in the Start menu.Write your C# programIn Notepad, write or copy-paste your C# program code into...

Popular Posts