Here is the code that gives me trouble:
I Declared m_alFriends like so:Code:m_alFriends = ArrayList.Synchronized(new ArrayList(25));
I changed that from:Code:private List<Friends.Friend> m_alFriends;
I get the following error:Code:private ArrayList m_alFriends;
Code:Error 7 Cannot implicitly convert type 'System.Collections.ArrayList' to 'System.Collections.Generic.List<Defiance.Bncs.Friends.Friend>' C:\Documents and Settings\JoeL Zimmerman\My Documents\My Programming\C#\8.0\Defiance\Defiance.Connection\BNCS\OpenGameProtocol.cs 764 31 Defiance.Connections


Reply With Quote
