Joined
Last Seen
0 Reputation Points
100% Quality Score
- Upvotes Received
- 1
- Posts with Upvotes
- 1
- Upvoting Members
- 1
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
0 Endorsements
Ranked #107.55K
~453 People Reached
Favorite Forums
1 Posted Topic
Re: The answer is in the error message. [code=C#] struct Animals { float Bird; int Rabbit[20]; Int64 Elephant; }; [/code] The previous code should be replaced with the following: [code=C#] struct Animals { float Bird; fixed int Rabbit[20]; Int64 Elephant; }; [/code] Notice the addition of the keyword "fixed" which is … |
The End.