✅ how does passing byref work

does this code mean that this.board and this.moveList is a ref value of the original board and moveList passed in?
No description
4 Replies
Sehra
Sehra2d ago
no, a copy would be made in the constructor. you'd have to change them to public ref and assign with this.board = ref board in the constructor
Tyrr
Tyrr2d ago
almost but not exactly. you're missing ref keyword on the field. Basically what Sehra said. Consider this:
No description
Tyrr
Tyrr2d ago
currently you are passing the pointer to some struct in the constructor, but dereferencing it and copying its value to the new memory location anyways
ElectricTortoise
ElectricTortoiseOP2d ago
ahhhhhhhhhhhhhhhhhhhhhhhhhhh okie okie i suspected as much but i didnt know what syntax to use to fix it ok ty

Did you find this page helpful?