VB.NET 2010, Framework 3.5

I have a procedure where I want to have an Optional TreeNode as a parameter. The problem is that Optional parameters must have a default value and I can't figure out how to assign a default value??

Code:
Public Sub Hello(Optional treeNode As TreeNode = ??)
   ' stuff
End Sub