User465171450 posted
I think there will be very little difference as I believe there will be a temporary allocation when doing method() + 1. The garbage collection should handle it without issue though you may have more trouble with the implicit conversion to text.
Your top can be further shortened though to:
var number= GetValueNbr();
lblNumber.Text = (++number).ToString();
I don' t think this reduces the readability though some people get confused on the importance of where the ++ is.