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.
The online tool is giving program intelligence and during update it is checking your syntax error also.
No comments:
Post a Comment