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.

Monday, 5 June 2017

How To Add Contact Form (Contact Us Page) in Blogger


Having a contact page on your blog is highly important. It is how visitors, brands and companies can reach you and it's something that every bloger should have. If sharing your email address on your blog is not your cup of tea, a contact form can serve as an easy way for others to get in tough. You can copy below code and paste there you want. <div><div style="float:left"> <script> var...

Thursday, 16 February 2017

What is C#?


C# is an Object Oriented  Programming Language (OOP). The common traits are encapsulation, inheritance and polymorphic. All the C# files are saved with file extension .CS C# includes the following five types of tokens. Keywords Identifies Literals Identifies Operators Punctuates Programming Language is a process of creating computer programs or in the other word software to...

Tuesday, 17 January 2017

Increment ++ and Decrement -- Operator as Prefix and Postfix


In this article we will explain Increment ++ and Decrement -- Operator as Prefix and Postfix Here number1 is variable. number1++ and ++number1 (postfix and prefix)  number1++ : first assign then increment Example  using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ConsoleApplication1 {    ...

Modulus Operator in C#


In this article we will explain how to use ( % ) Modulus Operator in C#. Modulus find the remainder. using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ConsoleApplication1 {     class Program     {         static void Main(string[]...

Divided Operator in C#


In this article we will explain how to use ( / ) Divided Operator in C# using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ConsoleApplication1 {     class Program     {         static void Main(string[]...

Multiplication Operator in C#


In this article we will explain how to use ( * ) Multiplication Operator in C# using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ConsoleApplication1 {     class Program     {         static void Main(string[]...

Subtraction Operator in C#


In this article we will explain how to use ( - ) Subtraction Operator in C# using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ConsoleApplication1 {     class Program     {         static void Main(string[]...

Addition Operator in C#


In this article we will explain how to use ( + ) Addition Operator in C# using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ConsoleApplication1 {     class Program     {         static void Main(string[] args)        ...

Popular Posts