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.65K
1 Posted Topic
Re: Array in struct
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.
drjr01