On Dec 13, 2011, at 11:01 AM, davthomas wrote:
> Thanks, care to explain. It may help in other java porting to monodroid to 
> avoid similar problems

There was a bug in which parameters of collection types (ICollection, IList, 
IDictionary, ISet) would trigger a NullReferenceException if the parameter was 
null. For example, this fails:

        mTts.Speak(myText1, QueueMode.Add, null);

while this works:

        mTts.Speak(myText1, QueueMode.Add, new Dictionary<string, string>());

This will be fixed after the next release.

 - Jon

_______________________________________________
Monodroid mailing list
[email protected]

UNSUBSCRIBE INFORMATION:
http://lists.ximian.com/mailman/listinfo/monodroid

Reply via email to