Thursday, August 10, 2017

.Net Fiddle Great tool to check simple console C# program.


Few days ago i come across very simple but efficient online tool name as ".NET Fiddle" which is a great tool to test your C# program on internet.

Please get information about this tool on this link .NET Fiddle or https://dotnetfiddle.net/

It is efficient and time saving to test your simple C# logic quicker way no need of any other C# IDE like Visual Studio , etc...

They are a group of .NET developers who are sick and tired of starting Visual Studio, creating a new project and running it, just to test simple code or try out samples from other developers.

This tool was inspired by http://jsfiddle.net, which is just awesome.

Let's test simple "Hello World" C# program in this tool

using System;

public class Program
{
public static void Main()
{
            Console.WriteLine("Please Enter Name :");
            string strName = Console.ReadLine();
            Console.WriteLine("Hello " + strName);
            Console.WriteLine(".NET Fiddle Just Rocks!");
}
}

.NET Fiddle Tool :

The online tool is giving program intelligence and during update it is checking your syntax error also.



During update of program code tool compile the program and run automatically.

You can re-run same program by clicking "Run" icon or button.

Program Output :





Hope this information might be useful to any developers.

Please add your questions in the comment bellow. Thank You !

No comments:

Post a Comment