Say i have a some code in my Form_Load

VB Code:
  1. 'Do something
  2. Dim intValue as Integer = 1
  3.  
  4. intValue *= 5
  5. intvalue += 1
  6.  
  7. DoSomething(intValue)


VB Code:
  1. Public Sub DoSomething(byRef Value as INteger)
  2.    ' Can i find the orginal  variable name in here? "intValue"
  3. End Sub