Converted libsecondlife to .NET 2.0, using generic containers exclusively
git-svn-id: http://libopenmetaverse.googlecode.com/svn/trunk@362 52acb1d6-8a22-11de-b505-999d5b087335
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
using System;
|
||||
using System.Collections;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace Nii.JSON
|
||||
@@ -59,7 +59,7 @@ namespace Nii.JSON
|
||||
public class JSONArray
|
||||
{
|
||||
/// <summary>The ArrayList where the JSONArray's properties are kept.</summary>
|
||||
private ArrayList myArrayList;
|
||||
private List<object> myArrayList;
|
||||
|
||||
|
||||
/// <summary>
|
||||
@@ -67,7 +67,7 @@ namespace Nii.JSON
|
||||
/// </summary>
|
||||
public JSONArray()
|
||||
{
|
||||
myArrayList = new ArrayList();
|
||||
myArrayList = new List<object>();
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
|
||||
Reference in New Issue
Block a user