2013-05-30 35 views
0

我剛剛使用C#並嘗試構建一個簡單的Windows應用商店應用程序。但我不明白爲什麼ArrayList找不到。在下面的代碼中,我嘗試在Button_Click_1()函數中使用ArrayList。我收到的錯誤是「The type or namespace name 'ArrayList' could not be found」,但我使用的是System.Collections,其中包含ArrayList不能在密封的部分類中使用外部類

using System; 
using System.Collections; 
using System.Collections.Generic; 
using System.IO; 
using System.Linq; 
using Windows.Foundation; 
using Windows.Foundation.Collections; 
using Windows.UI.Xaml; 
using Windows.UI.Xaml.Controls; 
using Windows.UI.Xaml.Controls.Primitives; 
using Windows.UI.Xaml.Data; 
using Windows.UI.Xaml.Input; 
using Windows.UI.Xaml.Media; 
using Windows.UI.Xaml.Navigation; 

// The Basic Page item template is documented at http://go.microsoft.com/fwlink/?LinkId=234237 

namespace Statistics 
{ 
    /// <summary> 
    /// A basic page that provides characteristics common to most applications. 
    /// </summary> 
    public sealed partial class MainPage : Statistics.Common.LayoutAwarePage 
    { 
     public MainPage() 
     { 
      this.InitializeComponent(); 
     } 

     /// <summary> 
     /// Populates the page with content passed during navigation. Any saved state is also 
     /// provided when recreating a page from a prior session. 
     /// </summary> 
     /// <param name="navigationParameter">The parameter value passed to 
     /// <see cref="Frame.Navigate(Type, Object)"/> when this page was initially requested. 
     /// </param> 
     /// <param name="pageState">A dictionary of state preserved by this page during an earlier 
     /// session. This will be null the first time a page is visited.</param> 
     protected override void LoadState(Object navigationParameter, Dictionary<String, Object> pageState) 
     { 
     } 

     /// <summary> 
     /// Preserves state associated with this page in case the application is suspended or the 
     /// page is discarded from the navigation cache. Values must conform to the serialization 
     /// requirements of <see cref="SuspensionManager.SessionState"/>. 
     /// </summary> 
     /// <param name="pageState">An empty dictionary to be populated with serializable state.</param> 
     protected override void SaveState(Dictionary<String, Object> pageState) 
     { 
     } 

     private void Button_Click_1(object sender, RoutedEventArgs e) 
     { 
      ArrayList data = new ArrayList(); 
     } 

     private void TextBox_TextChanged_1(object sender, TextChangedEventArgs e) 
     { 

     } 
    } 
} 
+0

奇怪的;它適用於VS 2012,.NET 4.5(控制檯應用程序)。 –

回答

4

您針對Windows商店:這意味着你使用的是磊科的框架。這不是常規.NET框架

  • 是有一些獨特的東西給它
  • 它缺乏一些東西從常規的框架
  • 一些事情有不同的特點

ArrayList被不包含。改用List-of-T。 List<object >就足夠了,但更具體的類型將是更可取的。

+0

好的謝謝!我會盡力 – mdw7326

1

非通用集合在winRT(windows store)應用程序中不可用。

使用泛型列表類型:

List<T> 
+0

對不起,我只是想指出這個答案是完全正確的,但是,馬克的更完整 – mdw7326