Search This Blog

Monday, May 30, 2016

C# Starting Hello World

### Open Visual Studio and click on *File option take a * New Project then select *Visual C# and *Console Application .

HELLO WORLD  OF C#
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace ConsoleApplication2
{
    class Program
    {
        static void Main(string[] args)
        {
            Console.WriteLine("hallo world");
        }
    }
}


SUM WITH TOW VARIABLE 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)
{
int a , b , c;
string s;
s = Console.ReadLine();
a = int.Parse(s);
s = Console.ReadLine();
b = int.Parse(s);
c = a + b;

Console.WriteLine("valu of c : "+c);


}
}
}

Saturday, May 28, 2016

C# Tutorial From MVA ( Microsoft Virtual Academy )

C# is a very easy and efficient programing language. Now a days we can do all kind of apps (Windows, android, exe)  and software by only C# . That means it is the multipurpose programming language . I suggest you to start C# from this website tutorial because it is the won tutorial of Microsoft so it can be the best and easiest tutorial to learn C# programming . So lets start to learn C# programming and keep continue .

                                                             https://mva.microsoft.com
                       
                                                                             

Visual Basic tutorial for beginners to developing windows app and software



Visual Basic Easiest Tutorial Ever I seen. A programmer who want to learn Visual Basic Software or Mobile App developing, I thing this tutorial website will very  help-full for him . You can get every things screen short and caption about it step by step .Here is 36 lesson on Visual Basic software developing.I am learning many thinks about Visual Basic soft developing from this website .

 http://www.vbtutor.net .




Restrict File Upload by File Type in Oracle Apex

If you want to restrict file upload by file type/extension/format you can follow the below steps.  Goto File Browser Item --> Advanced --...