parameter name on constructor

If in a class i have a property called x and I want to declare a constructor for the class tha takes x as a parameter, then the parameters name can’t be called x.

Public Sub Constructor(Name as string) mName = Name End Sub

So is there a way to pass the parameters such that having the line mName = Name isn’t necessary?

actually yes it can

Public Sub Constructor(x as string)
  self.x = x
End Sub