Search Issue Tracker
Fixed
Votes
0
Found in
4.3.3f1
Issue ID
584957
Regression
No
C# example for Serializable does not inherit from System.Object
The documentation for Serializable
http://docs.unity3d.com/Documentation/ScriptReference/Serializable.html
states that the serializable class must extend System.Object, and the Javascript code sample shows this, but the C# example does not.
Comments (1)
Add comment
All about bugs
View bugs we have successfully reproduced, and vote for the bugs you want to see fixed most urgently.
Latest issues
- PlayerPrefs get corrupted when a minimized fullscreen Player is closed through the Taskbar
- "To Debug, run app with -diag-job-temp-memory-leak-validation cmd line argument. This will output the callstacks of the leaked allocations." warning is printed when JobTempMemoryLeakValidation switch is enabled
- Main Thread stalling when loading Audio Source asset asynchronously while preloading another Audio Source asset
- Material artifacts occur in the Material Preview window when baked lighting is applied to scenes
- “ArgumentOutOfRangeException” after saving, reseting and re-add Default Tile Palette Tools to the list in Preferences window
Peter77
Jan 22, 2014 13:10
System.Object is the ultimate base class of all classes in the .NET Framework; it is the root of the type hierarchy. Languages typically do not require a class to declare inheritance from Object because the inheritance is implicit.
More on that, see http://msdn.microsoft.com/en-us/library/system.object%28v=vs.110%29.aspx