Pages

Monday, July 22, 2013

Visual CSharp Basics for Beginners

Welcome to DotNet Sql Info.  Visual C# Basics Tutorials for Beginners, C Sharp Basics, C Sharp Tutorials. C# developed by the software giant Microsoft to support Dot Net Framework. C# (C Sharp), a successor to C++, has been released in conjunction with the .NET framework. C# is a completely Object Oriented Programming (OOP) language like Java. If a programmer is familiar with Object Oriented Concepts than C# is not a big deal for programmers to learn C#. Here in this post we are going to provide some basic features and functionality of C#, have a look.

Saturday, May 4, 2013

Hello-World-Program-Using-C#.Net

Hi hello friends, here we are going to start with hello world program using C#.Net .


using system
namespace helloworld
{
    class program
    {
      public static void Main()
     {
         Console.WriteLine(" Hello World ");
     }
  }
}