Tagged Questions
The reference-parameters tag has no wiki summary.
32
votes
10answers
17k views
C# property and ref parameter, why no sugar?
I just ran across this error message while working in C#
A property or indexer may not be passed as an out or ref parameter
I known what caused this and did the quick solution of creating a ...
1
vote
2answers
131 views
Initializing objects on the fly
I have a vector called players and a class called Player. And what I'm trying to do is to write:
players.push_back(Player(name, Weapon(bullets)));
So I want to be able to create players in a loop. ...