관리 메뉴

KorSA

C# Error Message : Cannot modify the return value of 'Collection<...>' because it is not a variable 본문

Development Experience/C#

C# Error Message : Cannot modify the return value of 'Collection<...>' because it is not a variable

Praiv. 2019. 10. 1. 10:41
320x100

Collection이 구조체(struct) 로 이루어져 있으면,

Collection의 element에 접근해서 값을 변경하는 작업 시 에러가 난다.

 

Collection의 값을 변경하려고 참조하는 순간 element의 복사가 이루어지고(element가 struct 이니까),

복사된 객체에 아무리 이런저런 수정을 하더라도 원본은 변경되지 않기 때문이다.

 

그래서 컴파일러가 애초에 의미없는 행동이라고 에러를 내뱉게 된다.

 

같은 이유로 struct로 이루어진 List도 element를 수정할 수 없다.

728x90
728x90
Comments