C#

[C#] combobox.selecteditem type to int32 (object to int) combobox.items type

정보처리마법사 2016. 1. 29. 15:50
반응형

[C#] combobox.selecteditem type to int32 (object to int) combobox.items type




combobox의 selecteditem 의 type은 string이 boxing된 object type 이다.




int가 boxing된 object type이라면 이렇게 써도 되겠지만,




그렇지 않으므로 컴파일시엔 에러가 안떠도 런타임시 이런 에러가 뜬다.






이렇게 string으로 unboxing한 후에 인트로 파싱해도 되고,




Tostring메소드를 써서 string으로 변환 후 인트로 파싱해도 되고,




Convert.ToInt32메소드를 써도 된다.








Fin.


잘 못 된 정보가 있으면 말씀해주세요~


1초도 걸리지 않는 공감버튼 클릭은 작성자에게 큰 힘이 됩니다.


반응형