일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 출처 : https://webdir.tistory.com/506
- https://velog.io/@velopert/create-typescript-react-component
- toString
- 게시판
- http://jeonghwan-kim.github.io/dev/2019/06/25/react-ts.html
- 출처 : https://joshua1988.github.io/web-development/javascript/promise-for-beginners/
- object
Archives
- Today
- Total
Back Ground
Unity - SerializationException: Type ???? is not marked as Serializable. 에러 본문
Unity
Unity - SerializationException: Type ???? is not marked as Serializable. 에러
Back 2021. 5. 6. 10:13이 에러는 Unity가 아닌 C#에러이다.
[에러 로그]
SerializationException: Type '내가 지정한 Class' is not marked as Serializable. 또는 SerializationException: Type '내가 지정한 Class' in Assembly 'Assembly-CSharp, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null' is not marked as serializable. |
BinaryFormatter를 이용하여 파일 직렬화 도중 발생하는 에러였다.
1
2
3
4
|
[Serializable]
public class MyClass {
...
}
|
cs |
C#에서 [Serializable]를 이용하여 Class를 직렬화 시켜주면 정상 해결된다.
Comments