fletchsod
Programmer
- Dec 16, 2002
- 181
Hi!
This script I'm using is a webservice. Upon retreiving the data, which is considered object, not Int32, string, Double, etc. So, In VB.NET, I can do this...
But how do you that in C#? The Object doesn't have a length in C#.
I don't have a lot of control over the company's webservice which defined it as object which may works as a multiple-dimensional array of some sort.
Thanks...
This script I'm using is a webservice. Upon retreiving the data, which is considered object, not Int32, string, Double, etc. So, In VB.NET, I can do this...
Code:
Object oManheim_VehiclesAsObject = New Object()
Int32 iTotalCount = 0
iTotalCount = oManheim_VehiclesAsObject.Length
But how do you that in C#? The Object doesn't have a length in C#.
Code:
Int32 iTotalCount = 0;
object oManheim_VehiclesAsObject = new object();
iTotalCount = oManheim_VehiclesAsObject.????? ;
I don't have a lot of control over the company's webservice which defined it as object which may works as a multiple-dimensional array of some sort.
Thanks...