Search Unity

  1. Welcome to the Unity Forums! Please take the time to read our Code of Conduct to familiarize yourself with the forum rules and how to post constructively.
  2. We have updated the language to the Editor Terms based on feedback from our employees and community. Learn more.
    Dismiss Notice

ArrayList not support?Why I worked fine on lumia 520?

Discussion in 'Windows' started by yurilin1, Sep 18, 2013.

  1. yurilin1

    yurilin1

    Joined:
    May 22, 2013
    Posts:
    102
    Anybody can sure if there is some device support but others not?
    I am sure I even have hashtable in my codes. (But only declare,not using them)
    still works on my device.

    :confused:
     
  2. Phil-AV

    Phil-AV

    Joined:
    Jul 9, 2012
    Posts:
    57
    Use List<T> instead. The advantages of using List<T> have been discussed in this Stack Overflow thread. Generally speaking, List<T> is superior to ArrayList, and is supported in Windows Store Platforms.

    If in doubt, stick to the guidelines set by Unity. Forego the features specified as unsupported by Unity/Microsoft in Windows Store Apps and use their recommended alternatives.