Chaosy
Tutorial Reviewer
- Joined
- Jun 9, 2011
- Messages
- 13,219
hi, in my new school we got programming lessons and since I know basic jass the stuff they said on the first lessons I allready knew more or less. Like variables etc.
However we are supposed to learn C# and I got the "microsoft visual C# express " program to code in. However I dont get how to test my code. I just made simple test.
nothing happens when I try to test this, the cmd windows pops up for 0.1 seconds and then nothing. I get no errors from the program saying syntax error etc
However we are supposed to learn C# and I got the "microsoft visual C# express " program to code in. However I dont get how to test my code. I just made simple test.
JASS:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
Console.Write("afafkaf");
Console.WriteLine("sdsa");
}
}
}
nothing happens when I try to test this, the cmd windows pops up for 0.1 seconds and then nothing. I get no errors from the program saying syntax error etc