Sebastian Wojciechowski’s WebLog

.NET Developer

Archive for December 21st, 2007

Recently I have been asked this question. Answer is that it cannot be null and will not be null, so you don’t have to:
.Text != null
Why? Because .Text property in base class does:
set
{
if (value == null)
[…]

Read Full Post »