Tag: Development

Community

Overriding ToString

(Jim Mischel) In .NET, every class inherits from Object, and therefore inherits implementations of several methods. One of those methods is ToString, which returns a string that represents the current object. The default implementation isn’t very helpful, though. If you don’t override ToString, then

Community

Working with Lambda Expressions

(Brian Mains) Lambda expressions reduce the amount of work needed when iterating through data. All enumerable data is queryable through LINQ through the use of a SQL-like query (what I mean by that is the query looks like SQL, but is a different flavor). LINQ has an in-built mechanism to loop throu