Making Changes

Add a new class in our project named Person

Type this code on that class.

namespace ConsoleApp1
{
    class Person
    {
        public string Name { get; set; }
        public string Address { get; set; }
    }
}

Change it to the this code.

 namespace ConsoleApp1
 {
    class Person
    {
        public string FirstName { get; set; }
        public string LastName { get; set; }
        public string Address { get; set; }
    }
}

Then, save. Right-clicked on Person.cs and choose "Compare with Unmodified".

View History

To view history, right click on project, choose "Soure Control" and then "View History".

results matching ""

    No results matching ""