Dec 29, 2003 #1 S Shaitan00 Well-known member Joined Aug 11, 2003 Messages 343 Location Hell While running the code below I receive the following error
Dec 29, 2003 #2 PlausiblyDamp Administrator Joined Sep 4, 2002 Messages 6,155 Location Lancashire, UK User Rank *Expert* change C#: public Remote(int iO, int iM) { object[,] m_obj = new object[iO, iM]; } to C#: public Remote(int iO, int iM) { m_obj = new object[iO, iM]; } as you are re-declaring the array within the constructor at the moment.
change C#: public Remote(int iO, int iM) { object[,] m_obj = new object[iO, iM]; } to C#: public Remote(int iO, int iM) { m_obj = new object[iO, iM]; } as you are re-declaring the array within the constructor at the moment.