Not far into programming and just joined this forum of mighty company so this is a silly question, but what is the best way to clear textboxes in VB.Net and what is the diff
The Clear method is defined as
Clear
public void Clear() { Text = null; }
The Text property's setter starts with
Text
set { if (value == null) { value = ""; }
I assume this answers your question.