> In my code I've been using: > > if (object == null) > > as a way of checking whether or not an object is a valid reference. I know > in VB it's [object is nothing] and in Delphi it's [Assigned(object)]. Is > there a similar syntax for C#? You can use: if (object == null) :-) Miguel