0
I used this code on Curl IDE 8.0.1007, and when I run it it's says file not found am I doing something wrong? Thx
4 Antworten
+ 2
please attach code with it for more info
0
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SoloLearn
{
class program
{
static boot main (string [ ] args)
{
Console.WriteLine ("HelloWord!");
}
}
}
0
this would help you
using System;
using System.Collections.Generic;
using System.Linq; using System.Text;
using System.Threading.Tasks;
namespace Miscellaneous
{
class Hello_World_
{
static void Main()
{
Console.WriteLine("Hello world!");
Console.Read();
}
}
}
0
thank you.