I’m currently refactoring code to replace Convert.To’s to TryParse.
I’ve come across the following bit of code which is creating and assigning a property to an object.
List<Person> list = new List<Person>(); foreach (DataRow row in dt.Rows) { var p = new Person{ RecordID = Convert.ToInt32(row['ContactID']) }; list.Add(p); }
What I’ve come up with as a replacement is:
var p = new Person { RecordID = Int32.TryParse(row['ContactID'].ToString(), out RecordID) ? RecordID : RecordID };
Any thoughts, opinions, alternatives to what I’ve done?
Write an extension method.