473,396 Members | 1,987 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,396 software developers and data experts.

How to Type cast ArrayList items to class objects


Hi All,

I am new to vb .net,

I have an ArrayList and i store class objects in it,
and later i want to retrieve each ArrayList items and type cast to the
class,
How can it be done ?
I used CType for casting but it is throwing exception.
regards
ludy

Aug 31 '06 #1
14 18716
buddy,

You mean something as
\\\
dim myObject is myClass
myArraylist.Add(myObject)
DirectCast(myArrayList(0),myClass).WhatEver
///
I hope this helps,

Cor
"budy_ludy" <se*******@gmail.comschreef in bericht
news:11**********************@i42g2000cwa.googlegr oups.com...
>
Hi All,

I am new to vb .net,

I have an ArrayList and i store class objects in it,
and later i want to retrieve each ArrayList items and type cast to the
class,
How can it be done ?
I used CType for casting but it is throwing exception.
regards
ludy

Aug 31 '06 #2
Hi Cor

Below is the situation,
I am trying to pass the arraylist from function1 to the function2
which accepts class,
even if i type cast using Direct cast i get exception.
Public class myClass

Function1()
-----------
dim myObject is myClass
myArraylist.Add(myObject)

Function2(myArraylist.Item(0))
.......
.......
.......
Function2(myClass )
-------------------

I get exception when i call Function2 inside Function1 even after
DirectCast


Cor Ligthert [MVP] wrote:
buddy,

You mean something as
\\\
dim myObject is myClass
myArraylist.Add(myObject)
DirectCast(myArrayList(0),myClass).WhatEver
///
I hope this helps,

Cor
"budy_ludy" <se*******@gmail.comschreef in bericht
news:11**********************@i42g2000cwa.googlegr oups.com...

Hi All,

I am new to vb .net,

I have an ArrayList and i store class objects in it,
and later i want to retrieve each ArrayList items and type cast to the
class,
How can it be done ?
I used CType for casting but it is throwing exception.
regards
ludy
Aug 31 '06 #3
Hello budy_ludy,

What Exception exactly?

-Boo
Hi Cor

Below is the situation,
I am trying to pass the arraylist from function1 to the function2
which accepts class,
even if i type cast using Direct cast i get exception.
Public class myClass

Function1()
-----------
dim myObject is myClass
myArraylist.Add(myObject)
Function2(myArraylist.Item(0))
......
......
......
Function2(myClass )
-------------------
I get exception when i call Function2 inside Function1 even after
DirectCast

Cor Ligthert [MVP] wrote:
>buddy,

You mean something as
\\\
dim myObject is myClass
myArraylist.Add(myObject)
DirectCast(myArrayList(0),myClass).WhatEver
///
I hope this helps,
Cor

"budy_ludy" <se*******@gmail.comschreef in bericht
news:11**********************@i42g2000cwa.googleg roups.com...
>>Hi All,

I am new to vb .net,

I have an ArrayList and i store class objects in it,
and later i want to retrieve each ArrayList items and type cast to
the
class,
How can it be done ?
I used CType for casting but it is throwing exception.
regards
ludy

Aug 31 '06 #4
Try this (I think this is what you meant).

Public class myClass
....
End Class

Function1()
Dim myObject as myClass
myArraylist.Add(myObject)
dim myFunctionReturn as boolean
myFunctionReturn = Function2(DirectCast(myArraylist.Item(0), myclass))
......
End Function

Function2(myVariable as myClass ) as boolean

End Function
-------------------
--
Dennis in Houston
"budy_ludy" wrote:
Hi Cor

Below is the situation,
I am trying to pass the arraylist from function1 to the function2
which accepts class,
even if i type cast using Direct cast i get exception.
Public class myClass

Function1()
-----------
dim myObject is myClass
myArraylist.Add(myObject)

Function2(myArraylist.Item(0))
.......
.......
.......
Function2(myClass )
-------------------

I get exception when i call Function2 inside Function1 even after
DirectCast


Cor Ligthert [MVP] wrote:
buddy,

You mean something as
\\\
dim myObject is myClass
myArraylist.Add(myObject)
DirectCast(myArrayList(0),myClass).WhatEver
///
I hope this helps,

Cor
"budy_ludy" <se*******@gmail.comschreef in bericht
news:11**********************@i42g2000cwa.googlegr oups.com...
>
Hi All,
>
I am new to vb .net,
>
I have an ArrayList and i store class objects in it,
and later i want to retrieve each ArrayList items and type cast to the
class,
How can it be done ?
I used CType for casting but it is throwing exception.
>
>
regards
ludy
>

Aug 31 '06 #5
Hi,

sorry if i have not communicated properly earlier,

Exact situation,

C#
I have a Library created in C# and it has a class myClass(only integers
and strings),
i store the objects in ArrayList.

VB
i call the Library in VB and it returns me the ArrayList(items of
myClass objects),
i retrieve the first element and typecast it to myClass, which has the
same definition in
both vb and c# (the class has only integers and string as elements and
no methods)
Same class definition in vb and c#(library)

now at the point when i try to type cast ArrayList element to myClass
in vb, it gives me below exception,
----------------------------
Unable to cast object of type Library.myClass to type myClass

When casting from a number, the value must be a number less than
infinity

Make sure the source type is convertible to the destination type

----------------------------

i tried both DirectCast and also CType but it gives me exception

any other alternative, if it is not possible to communicate class from
c# library to vb ?

Dennis wrote:
Try this (I think this is what you meant).

Public class myClass
....
End Class

Function1()
Dim myObject as myClass
myArraylist.Add(myObject)
dim myFunctionReturn as boolean
myFunctionReturn = Function2(DirectCast(myArraylist.Item(0), myclass))
......
End Function

Function2(myVariable as myClass ) as boolean

End Function
-------------------

--
Dennis in Houston
"budy_ludy" wrote:
Hi Cor

Below is the situation,
I am trying to pass the arraylist from function1 to the function2
which accepts class,
even if i type cast using Direct cast i get exception.
Public class myClass

Function1()
-----------
dim myObject is myClass
myArraylist.Add(myObject)

Function2(myArraylist.Item(0))
.......
.......
.......
Function2(myClass )
-------------------

I get exception when i call Function2 inside Function1 even after
DirectCast


Cor Ligthert [MVP] wrote:
buddy,
>
You mean something as
\\\
dim myObject is myClass
myArraylist.Add(myObject)
DirectCast(myArrayList(0),myClass).WhatEver
///
I hope this helps,
>
Cor
>
>
"budy_ludy" <se*******@gmail.comschreef in bericht
news:11**********************@i42g2000cwa.googlegr oups.com...

Hi All,

I am new to vb .net,

I have an ArrayList and i store class objects in it,
and later i want to retrieve each ArrayList items and type cast to the
class,
How can it be done ?
I used CType for casting but it is throwing exception.


regards
ludy
Sep 1 '06 #6
budy_ludy,

In your VB project, is your myClass object dimensioned as a new instance of
Library.myClass?

Or do you have 2 classes: Library.myClass and another myClass defined in
your VB project?

Kerry Moorman
"budy_ludy" wrote:
Hi,

sorry if i have not communicated properly earlier,

Exact situation,

C#
I have a Library created in C# and it has a class myClass(only integers
and strings),
i store the objects in ArrayList.

VB
i call the Library in VB and it returns me the ArrayList(items of
myClass objects),
i retrieve the first element and typecast it to myClass, which has the
same definition in
both vb and c# (the class has only integers and string as elements and
no methods)
Same class definition in vb and c#(library)

now at the point when i try to type cast ArrayList element to myClass
in vb, it gives me below exception,
----------------------------
Unable to cast object of type Library.myClass to type myClass

When casting from a number, the value must be a number less than
infinity

Make sure the source type is convertible to the destination type

----------------------------

i tried both DirectCast and also CType but it gives me exception

any other alternative, if it is not possible to communicate class from
c# library to vb ?

Dennis wrote:
Try this (I think this is what you meant).

Public class myClass
....
End Class

Function1()
Dim myObject as myClass
myArraylist.Add(myObject)
dim myFunctionReturn as boolean
myFunctionReturn = Function2(DirectCast(myArraylist.Item(0), myclass))
......
End Function

Function2(myVariable as myClass ) as boolean

End Function
-------------------
--
Dennis in Houston
"budy_ludy" wrote:
Hi Cor
>
Below is the situation,
I am trying to pass the arraylist from function1 to the function2
which accepts class,
even if i type cast using Direct cast i get exception.
>
>
Public class myClass
>
Function1()
-----------
dim myObject is myClass
myArraylist.Add(myObject)
>
Function2(myArraylist.Item(0))
.......
.......
.......
>
>
Function2(myClass )
-------------------
>
I get exception when i call Function2 inside Function1 even after
DirectCast
>
>
>
>
Cor Ligthert [MVP] wrote:
buddy,

You mean something as
\\\
dim myObject is myClass
myArraylist.Add(myObject)
DirectCast(myArrayList(0),myClass).WhatEver
///
I hope this helps,

Cor


"budy_ludy" <se*******@gmail.comschreef in bericht
news:11**********************@i42g2000cwa.googlegr oups.com...
>
Hi All,
>
I am new to vb .net,
>
I have an ArrayList and i store class objects in it,
and later i want to retrieve each ArrayList items and type cast to the
class,
How can it be done ?
I used CType for casting but it is throwing exception.
>
>
regards
ludy
>
>
>

Sep 1 '06 #7
Hi Kerry Moorman ,

i have a scenario like this,

.......
vb
----
ArrayList inarray,outarray
outarray = LibraryFunction(inarray)

vbobject = new myClass
vbobject.Function1( DirectCast(outarray.Item(0), myClass) )
and now i understood that there is one function, Function1 in myClass
of vb,
and the same function i have not defined in c#.
In vb i call the Function1 and pass the items from ArrayList,
and i get exception when i call Function1 ,
should i have a dummy function1 in c# library class ?

Kerry Moorman wrote:
budy_ludy,

In your VB project, is your myClass object dimensioned as a new instance of
Library.myClass?

Or do you have 2 classes: Library.myClass and another myClass defined in
your VB project?

Kerry Moorman
"budy_ludy" wrote:
Hi,

sorry if i have not communicated properly earlier,

Exact situation,

C#
I have a Library created in C# and it has a class myClass(only integers
and strings),
i store the objects in ArrayList.

VB
i call the Library in VB and it returns me the ArrayList(items of
myClass objects),
i retrieve the first element and typecast it to myClass, which has the
same definition in
both vb and c# (the class has only integers and string as elements and
no methods)
Same class definition in vb and c#(library)

now at the point when i try to type cast ArrayList element to myClass
in vb, it gives me below exception,
----------------------------
Unable to cast object of type Library.myClass to type myClass

When casting from a number, the value must be a number less than
infinity

Make sure the source type is convertible to the destination type

----------------------------

i tried both DirectCast and also CType but it gives me exception

any other alternative, if it is not possible to communicate class from
c# library to vb ?

Dennis wrote:
Try this (I think this is what you meant).
>
Public class myClass
....
End Class
>
Function1()
Dim myObject as myClass
myArraylist.Add(myObject)
dim myFunctionReturn as boolean
myFunctionReturn = Function2(DirectCast(myArraylist.Item(0), myclass))
......
End Function
>
Function2(myVariable as myClass ) as boolean
>
End Function
-------------------
>
--
Dennis in Houston
>
>
"budy_ludy" wrote:
>
Hi Cor

Below is the situation,
I am trying to pass the arraylist from function1 to the function2
which accepts class,
even if i type cast using Direct cast i get exception.


Public class myClass

Function1()
-----------
dim myObject is myClass
myArraylist.Add(myObject)

Function2(myArraylist.Item(0))
.......
.......
.......


Function2(myClass )
-------------------

I get exception when i call Function2 inside Function1 even after
DirectCast




Cor Ligthert [MVP] wrote:
buddy,
>
You mean something as
\\\
dim myObject is myClass
myArraylist.Add(myObject)
DirectCast(myArrayList(0),myClass).WhatEver
///
I hope this helps,
>
Cor
>
>
"budy_ludy" <se*******@gmail.comschreef in bericht
news:11**********************@i42g2000cwa.googlegr oups.com...

Hi All,

I am new to vb .net,

I have an ArrayList and i store class objects in it,
and later i want to retrieve each ArrayList items and type cast to the
class,
How can it be done ?
I used CType for casting but it is throwing exception.


regards
ludy

Sep 1 '06 #8
budy_ludy wrote:
vb
----
ArrayList inarray,outarray
outarray = LibraryFunction(inarray)

vbobject = new myClass
vbobject.Function1( DirectCast(outarray.Item(0), myClass) )
and now i understood that there is one function, Function1 in myClass
of vb,
and the same function i have not defined in c#.
In vb i call the Function1 and pass the items from ArrayList,
and i get exception when i call Function1 ,
should i have a dummy function1 in c# library class ?
You have TWO classes? Once in a .vb file in your vb project and
another defined in a .dll written in C#? Is that correct?

If so, then you can't do that. Even if your class in VB was identical
to the class in C#, they are still considered different types by the
runtime and you cannot cast between them.

Just use the class in the C# library and don't try to duplicate it in
VB and you should be ok.

Chris

Sep 1 '06 #9

Chris Dunaway,

which means i cannot cast a c# class to vb class even though they share
same structure,

ok got it,

Chris Dunaway wrote:
budy_ludy wrote:
vb
----
ArrayList inarray,outarray
outarray = LibraryFunction(inarray)

vbobject = new myClass
vbobject.Function1( DirectCast(outarray.Item(0), myClass) )
and now i understood that there is one function, Function1 in myClass
of vb,
and the same function i have not defined in c#.
In vb i call the Function1 and pass the items from ArrayList,
and i get exception when i call Function1 ,
should i have a dummy function1 in c# library class ?

You have TWO classes? Once in a .vb file in your vb project and
another defined in a .dll written in C#? Is that correct?

If so, then you can't do that. Even if your class in VB was identical
to the class in C#, they are still considered different types by the
runtime and you cannot cast between them.

Just use the class in the C# library and don't try to duplicate it in
VB and you should be ok.

Chris
Sep 1 '06 #10
Well, umm, yeah, that is correct I guess.

However, I think you're missing the point: *Any* class you create in C# is
perfectly usuable from VB and vice versa. If you defined myClass in your C#
project then use that class from your VB project. Don't create a new class
with the same name. A class is never the same as another class even though
they might have the same name.

/claes

"budy_ludy" <se*******@gmail.comwrote in message
news:11**********************@e3g2000cwe.googlegro ups.com...
>
Chris Dunaway,

which means i cannot cast a c# class to vb class even though they share
same structure,

ok got it,

Sep 1 '06 #11
budy_ludy wrote:
Chris Dunaway,

which means i cannot cast a c# class to vb class even though they share
same structure,
Exactly. Just use the C# class and add the function that you need to
that or if you need it in VB or cannot alter the C# class, then in your
VB class, just inherit from the C# class then you can add your function
in VB plus you will be able to cast from the C# class to the VB class.

Sep 1 '06 #12

ok got the point, i will reuse the vb class in c# and from the c#
library i will return the class object and in vb i will type cast the
returned arraylist item to vb class.

Thank you to all.


Chris Dunaway wrote:
budy_ludy wrote:
Chris Dunaway,

which means i cannot cast a c# class to vb class even though they share
same structure,

Exactly. Just use the C# class and add the function that you need to
that or if you need it in VB or cannot alter the C# class, then in your
VB class, just inherit from the C# class then you can add your function
in VB plus you will be able to cast from the C# class to the VB class.
Sep 1 '06 #13
budy,

I don't see the problem as long as you have set a reference to your C# class
and that is correct CLS compliant written.

Than the code should be the same as in my first message.

The only thing is that in that I have used Whatever, because I don't know
what properties/methods you have in that C# class.

I hope this helps,

Cor

"budy_ludy" <se*******@gmail.comschreef in bericht
news:11*********************@e3g2000cwe.googlegrou ps.com...
Hi,

sorry if i have not communicated properly earlier,

Exact situation,

C#
I have a Library created in C# and it has a class myClass(only integers
and strings),
i store the objects in ArrayList.

VB
i call the Library in VB and it returns me the ArrayList(items of
myClass objects),
i retrieve the first element and typecast it to myClass, which has the
same definition in
both vb and c# (the class has only integers and string as elements and
no methods)
Same class definition in vb and c#(library)

now at the point when i try to type cast ArrayList element to myClass
in vb, it gives me below exception,
----------------------------
Unable to cast object of type Library.myClass to type myClass

When casting from a number, the value must be a number less than
infinity

Make sure the source type is convertible to the destination type

----------------------------

i tried both DirectCast and also CType but it gives me exception

any other alternative, if it is not possible to communicate class from
c# library to vb ?

Dennis wrote:
>Try this (I think this is what you meant).

Public class myClass
....
End Class

Function1()
Dim myObject as myClass
myArraylist.Add(myObject)
dim myFunctionReturn as boolean
myFunctionReturn = Function2(DirectCast(myArraylist.Item(0),
myclass))
......
End Function

Function2(myVariable as myClass ) as boolean

End Function
-------------------

--
Dennis in Houston
"budy_ludy" wrote:
Hi Cor

Below is the situation,
I am trying to pass the arraylist from function1 to the function2
which accepts class,
even if i type cast using Direct cast i get exception.
Public class myClass

Function1()
-----------
dim myObject is myClass
myArraylist.Add(myObject)

Function2(myArraylist.Item(0))
.......
.......
.......
Function2(myClass )
-------------------

I get exception when i call Function2 inside Function1 even after
DirectCast


Cor Ligthert [MVP] wrote:
buddy,

You mean something as
\\\
dim myObject is myClass
myArraylist.Add(myObject)
DirectCast(myArrayList(0),myClass).WhatEver
///
I hope this helps,

Cor
"budy_ludy" <se*******@gmail.comschreef in bericht
news:11**********************@i42g2000cwa.googlegr oups.com...

Hi All,

I am new to vb .net,

I have an ArrayList and i store class objects in it,
and later i want to retrieve each ArrayList items and type cast to
the
class,
How can it be done ?
I used CType for casting but it is throwing exception.
regards
ludy



Sep 1 '06 #14
| Same class definition in vb and c#(library)

Ah! There's the rub

The "class definition" should only be in one language/library either VB or
C#.

Although they may have similar layouts, they are distinct as the CLR uses
assembly, version, namespace & type name to identify a type. Seeing as the
VB class is in a VB assembly & the C# class is in a C# assembly the runtime
will consider them distinct types.

One of the major benefits of .NET is its interoperability in that you can
define the class once in C#, then use that class definition all your want in
VB and visa versa. Provided the class is CLS compliant....

--
Hope this helps
Jay B. Harlow [MVP - Outlook]
..NET Application Architect, Enthusiast, & Evangelist
T.S. Bradley - http://www.tsbradley.net
"budy_ludy" <se*******@gmail.comwrote in message
news:11*********************@e3g2000cwe.googlegrou ps.com...
| Hi,
|
| sorry if i have not communicated properly earlier,
|
| Exact situation,
|
| C#
| I have a Library created in C# and it has a class myClass(only integers
| and strings),
| i store the objects in ArrayList.
|
| VB
| i call the Library in VB and it returns me the ArrayList(items of
| myClass objects),
| i retrieve the first element and typecast it to myClass, which has the
| same definition in
| both vb and c# (the class has only integers and string as elements and
| no methods)
| Same class definition in vb and c#(library)
|
| now at the point when i try to type cast ArrayList element to myClass
| in vb, it gives me below exception,
| ----------------------------
| Unable to cast object of type Library.myClass to type myClass
|
| When casting from a number, the value must be a number less than
| infinity
|
| Make sure the source type is convertible to the destination type
|
| ----------------------------
|
| i tried both DirectCast and also CType but it gives me exception
|
| any other alternative, if it is not possible to communicate class from
| c# library to vb ?
|
|
|
|
|
| Dennis wrote:
| Try this (I think this is what you meant).
| >
| Public class myClass
| ....
| End Class
| >
| Function1()
| Dim myObject as myClass
| myArraylist.Add(myObject)
| dim myFunctionReturn as boolean
| myFunctionReturn = Function2(DirectCast(myArraylist.Item(0),
myclass))
| ......
| End Function
| >
| Function2(myVariable as myClass ) as boolean
| >
| End Function
| -------------------
| >
| --
| Dennis in Houston
| >
| >
| "budy_ludy" wrote:
| >
| Hi Cor
|
| Below is the situation,
| I am trying to pass the arraylist from function1 to the function2
| which accepts class,
| even if i type cast using Direct cast i get exception.
|
|
| Public class myClass
|
| Function1()
| -----------
| dim myObject is myClass
| myArraylist.Add(myObject)
|
| Function2(myArraylist.Item(0))
| .......
| .......
| .......
|
|
| Function2(myClass )
| -------------------
|
| I get exception when i call Function2 inside Function1 even after
| DirectCast
|
|
|
|
| Cor Ligthert [MVP] wrote:
| buddy,
| >
| You mean something as
| \\\
| dim myObject is myClass
| myArraylist.Add(myObject)
| DirectCast(myArrayList(0),myClass).WhatEver
| ///
| I hope this helps,
| >
| Cor
| >
| >
| "budy_ludy" <se*******@gmail.comschreef in bericht
| news:11**********************@i42g2000cwa.googlegr oups.com...
|
| Hi All,
|
| I am new to vb .net,
|
| I have an ArrayList and i store class objects in it,
| and later i want to retrieve each ArrayList items and type cast to
the
| class,
| How can it be done ?
| I used CType for casting but it is throwing exception.
|
|
| regards
| ludy
|
|
|
|
Sep 1 '06 #15

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
by: Pure Krome | last post by:
How do i serialize two instances (of some object) in the same class? I'm not sure how i would de-serialize a class that has two or more instances of some object type, and how the deserialize...
4
by: Richard Lee | last post by:
Hi, I have a question when I do a data type cast. the common way when we do a cast, is we know the type we want to cast to, i.e. we want to cast object to string, object xyz = "question";...
1
by: martin | last post by:
hi guys, have you ever tried to create a type-cast operator to a 'reference/pointer to an array'? i hadn't, not until yesterday when i discovered that it is not exactly the trivial task one'd...
3
by: mra | last post by:
I want to cast an object that I have created from a typename to the corresponding type. Can anycone tell me how to do this? Example: //Here, Create the object of type "MyClass" object...
6
by: SA | last post by:
Hi all: I have an object of a base class that needs to be cast to an object of a specialized class. What is the best way to do this? (I thought about creating a constructor in the specialized...
2
by: =?Utf-8?B?RHJldw==?= | last post by:
I have a current requirement to all a subsidiary to use a current legacy application and interface with my new system to inject data when appropriate. I wanted to create a web service since we are...
2
by: Bigi | last post by:
Hi, Please help, this has been driving me nuts for nearly 2 days now. This vb6 code works: Public oEng As New ebizEngine Public oMsg As ebizMessage Function EbizGetFromQueue() As String
7
by: * Tong * | last post by:
Hi, I couldn't figure out how to properly type cast in this case: $ cat -n type_cast.c 1 #include <stdio.h> 2 3 typedef unsigned char Byte; 4 typedef signed char Small_Int; 5
55
by: tonytech08 | last post by:
How valuable is it that class objects behave like built-in types? I appears that the whole "constructor doesn't return a value because they are called by the compiler" thing is to enable...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.