Reputation: 1681
Can anybody tell me how to do this?
@integer.IntegerValue + " , ";
I hope it's obvious what I want to do. I'm sure it's painfully simple.
Upvotes: 0
Views: 593
Reputation: 78525
Wrap it in parenthesis:
@(integer.IntegerValue + " , ")
Upvotes: 3