How to create an array of objects?
-
Your post is broken and hard to read. Please edit it and make it readable.
Aghosh Babu wrote:
i want to create an array of modem objects
Create a class, say
Modem
with all required properties and put it in aList<Modem>
other than arraylist.Navaneeth How to use google | Ask smart questions
-
:)
Navaneeth How to use google | Ask smart questions
-
:)
Navaneeth How to use google | Ask smart questions
:confused::confused:
-
:confused::confused:
pls tell me how to create an array of objects in general? and how to call the objects later??
-
pls tell me how to create an array of objects in general? and how to call the objects later??
Aghosh Babu wrote:
pls tell me how to create an array of objects
object[] objArray = {new object(),new object()};
You access it with an indexer. Like
object obj1 = objArray[0]
. These all are basics and looks like you need a C# book. :)
Navaneeth How to use google | Ask smart questions
-
Aghosh Babu wrote:
pls tell me how to create an array of objects
object[] objArray = {new object(),new object()};
You access it with an indexer. Like
object obj1 = objArray[0]
. These all are basics and looks like you need a C# book. :)
Navaneeth How to use google | Ask smart questions
I am not an expert.. this is my univ project! ;P
-
I am not an expert.. this is my univ project! ;P
-
Aghosh Babu wrote:
this is my univ project!
Then you've learnt nothing, choose another career path.
thanks for the advice! unfortunately i havn't born as a programmer ;P
-
thanks for the advice! unfortunately i havn't born as a programmer ;P
<pre> i am developing an sms gateway application</pre> If ur not programmer then how you develop that gateway. :sigh: But Here is the Solution
ArrayList arrObj = new ArrayList();
arrObj.Add(YourObject);foreach(object o in arrObj)
{
if(o is YourObjectClass)
{
//Use this object
}
}WANTED wasim khan(Killed 50 Innocent Buggs, Distroyed 200 Exception, make 5 Project Hostage) any Compnay Hire him will pay 30,000. Best place where u can get him is Sorcim Technologies Murre Road RWP
-
Aghosh Babu wrote:
this is my univ project!
Then you've learnt nothing, choose another career path.