Programming is slightly different, we often have a lot of assignments underneath each other, and although they not the same like maths, there's a close relationship. As such aligning the equals allows us to quickly spot the relationship.
Further it makes your code so much readable, by not aligning, it's like opening up a CSV file in notepad. If you open up that CSV file in Excel, it's becomes so much easier to read since the columns have meaning.
Compare these
person.FirstName = "Chris";
person.Surname = "McGrath";
person.Age = 24;
person.Occupation = "Software Developer";
person.HomeTown = "Brisbane";
=>
person.FirstName = "Chris";
person.Surname = "McGrath";
person.Age = 24;
person.Occupation = "Software Developer";
person.HomeTown = "Brisbane";
will va do these alignment for me ? thank you for your advising