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:
John Hurliman
2006-10-21 05:53:58 +00:00
parent 9d9a84f867
commit 59edffffe7
46 changed files with 1411 additions and 1396 deletions

View File

@@ -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>