https://bugzilla.novell.com/show_bug.cgi?id=328036#c1
Robert Jordan <[EMAIL PROTECTED]> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |[EMAIL
PROTECTED]
Component|System |CORLIB
--- Comment #1 from Robert Jordan <[EMAIL PROTECTED]> 2007-09-25 04:12:24 MST
---
Compilable test case:
using System;
using System.Collections;
using System.Collections.Generic;
class T
{
static void Main ()
{
Dictionary<string, string> d = new Dictionary<string,
string>();
d["a"] = "b";
ICollection keys = d.Keys;
object[] keyArray = new object[d.Count];
keys.CopyTo(keyArray, 0);
Console.WriteLine(keyArray[0]);
}
}
--
Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the QA contact for the bug.
You are the assignee for the bug.
_______________________________________________
mono-bugs maillist - [email protected]
http://lists.ximian.com/mailman/listinfo/mono-bugs