Creating a new project using Xamarin Studio

suggest change
  1. Download and install Xamarin Studio Community.
  2. Open Xamarin Studio.
  3. Click FileNewSolution.
  1. Click .NETConsole Project and choose C#.
  2. Click Next to proceed.
  1. Enter the Project Name and Browse… for a Location to Save and then click Create.
  1. The newly created project will look similar to:
  1. This is the code in the Text Editor:
using System;

namespace FirstCsharp
{
    public class MainClass
    {
        public static void Main(string[] args)
        {
            Console.WriteLine("Hello World!");
            Console.ReadLine();
        }
    }
}
  1. To run the code, press F5 or click the Play Button as shown below:
  1. Following is the Output:

Feedback about page:

Feedback:
Optional: your email if you want me to get back to you:


Getting Started With C#:
* Creating a new project using Xamarin Studio

Table Of Contents
0 Getting Started With C#
17 Regex
19 Arrays
21 Enum
22 Tuples
24 GUID
27 Looping
36 Casting
46 Methods
88 Events
92 Structs
104 Indexer
106 Stream
107 Timers
109 Threading
127 Caching
135 Pointers
147 C# Script