I dont understand why the value of i and k is still 5 in line number 19 ,20,after post increment?
The value of i is still 5 though after post increment.
`using System;
using System.Collections.Generic;
using System.Text;
using System.Threading.Tasks;
namespace Increment
{
class Program
{
static void Main(string[] args)
{
int i = 5;
int j = 10;
Console.WriteLine("before incrementing{0}",i);
i=i++;
Console.WriteLine("after incrementing {0}",i); //i=5?
int k = i;
Console.WriteLine("after incrementing i and assign {0}", k);//K=5?
}
}
}`