✅ 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?

4 Replies
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 constructoralmost but not exactly. you're missing ref keyword on the field. Basically what Sehra said. Consider this:

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
ahhhhhhhhhhhhhhhhhhhhhhhhhhh okie okie
i suspected as much but i didnt know what syntax to use to fix it
ok ty