+ 2

I can't understand why is it an error?

using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace SoloLearn { class Program { static void Main(string[] args) { int x = 3; Console.WriteLine(x); int y = x++; Console.WriteLine(y); } }

18th Jul 2020, 12:52 PM
Myat Min
Myat Min - avatar
1 Antwort