maybe... same type object can just matching... under follow... object x = new object(); object y = x; r u wanna that? or the other means?
.. knodark
maybe... same type object can just matching... under follow... object x = new object(); object y = x; r u wanna that? or the other means?
.. knodark
Thanks for your read... Well... Somethimes define propery in user class for example... public sealed myClass { private int _myValue; public int MyValue { get { return this._myValue; } set { this.myValue = value; } } } Well... can i acccess arraylist in user class ?? for example... public sealed myClass { private ArrayList _arMyList; public ArrayList arMyList { } } and how can i define get & set property ? just same general rules ???
.. knodark
thaks for your reply. i was forgot it. :) it just use temporary memorize during finish user job. well... generic list is light more than arraylist array? .............. append... wow.. that's more short code... :) i was change generic list array :) tanks for your reply... -- modified at 3:27 Tuesday 13th November, 2007
.. knodark
before my environment vs2005 C#.net and make web project now. while i was mad my code, i need to take some arraylist array. for example... defind arraylist array under the partial class ------------------------------------------------ public ArrayList[,] arFood = new ArrayList[4, 2]; and i use my button click event ------------------------------------------------ arFood[iMeal, 0].Add(CommonLib.IsNullString(myListItem.Value)); but while i was compiled source printed out error message. "System.NullReferenceException" .. so i was debug trace but myListItem.Value was not empty .. so my opinion, that's not initialize arraylist array. how can i initalize my arraylist array? or it's wrong code ? thanks for read my question...
.. knodark