I am using Unity3D to build an Android/iPhone game. I was happily C# scripting while a dark thought occurred to me. Will C# collections like LinkedList and List still work on these devices ?
Thanks in advance.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Yes, they all work. Unity uses Mono as a base for its scripting engine. Mono is a mature implementation of .Net and basically all base classes.
You can at least assume everything under corlib, mscorlib, System.dll and System.Core.dll is included.
Edit: Ricky AH linked to a page related to MonoTouch, which are probably also relevant for Unity’s IOS platforms.