473,809 Members | 2,731 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

downcasting from a System.Array to an array of a specific type

I'm trying to do this-

....
void method1(System. Array arr)
{
// happen to know all elements in arr are int's

// this line throws an InvalidCastExce ption
int[] intArr = (int[]) arr;
}

yes, it's asking a bit much to have it work with that simple of syntax, but
is there any way to downcast from a System.Array to a <specific type>[]
(e.g., int[]), as an alternative to creating a new specific type array, and
copying from the System.Array?
Nov 17 '05 #1
4 2190
Do you really want to cast the array itself? Why not simply cast the
elements as you retrieve them.

Pete

"Joe Doyle" <Jo******@discu ssions.microsof t.com> wrote in message
news:6B******** *************** ***********@mic rosoft.com...
I'm trying to do this-

...
void method1(System. Array arr)
{
// happen to know all elements in arr are int's

// this line throws an InvalidCastExce ption
int[] intArr = (int[]) arr;
}

yes, it's asking a bit much to have it work with that simple of syntax,
but
is there any way to downcast from a System.Array to a <specific type>[]
(e.g., int[]), as an alternative to creating a new specific type array,
and
copying from the System.Array?

Nov 17 '05 #2
Joe Doyle wrote:
I'm trying to do this-

...
void method1(System. Array arr)
{
// happen to know all elements in arr are int's

// this line throws an InvalidCastExce ption
int[] intArr = (int[]) arr;
}

yes, it's asking a bit much to have it work with that simple of syntax, but
is there any way to downcast from a System.Array to a <specific type>[]
(e.g., int[]), as an alternative to creating a new specific type array, and
copying from the System.Array?


You should be able to see why this isn't possible. The fact that you
'happen to know all elements ... are ints' is what allows you to safely
do an Array.Copy into an int[]. If it *were* possible to somehow do
this cast, then picture this:

object[] arr = new object[] { 1,2,3 };
System.Array a = arr; // to hide its type from the compiler
int[] intarr;

// suppose this line worked:
intarr = (int[]) a;

arr[2] = new Hashtable();

// what is int[2] now??

Casting only makes sense when the thing actually *is* of the type you
are trying to cast to. Just because an array only contains ints, that
doesn't make it an int[].

--
Larry Lard
Replies to group please

Nov 17 '05 #3

"Joe Doyle" <Jo******@discu ssions.microsof t.com> wrote in message
news:6B******** *************** ***********@mic rosoft.com...
void method1(System. Array arr)
{
// happen to know all elements in arr are int's

// this line throws an InvalidCastExce ption
int[] intArr = (int[]) arr;
}

yes, it's asking a bit much to have it work with that simple of syntax, but
is there any way to downcast from a System.Array to a <specific type>[]
(e.g., int[]), as an alternative to creating a new specific type array, and
copying from the System.Array?


Where do you get the System.Array in the first place?
Do you really have an int[] or
do you have an object[] full of boxed ints?

Bill
Nov 17 '05 #4
Joe Doyle wrote:
I'm trying to do this-

...
void method1(System. Array arr)
{
// happen to know all elements in arr are int's

// this line throws an InvalidCastExce ption
int[] intArr = (int[]) arr;
}


You will get an InvalidCastExce ption if arr is *not* an int[]. Did you
check this?

Cheers,
--
http://www.joergjooss.de
mailto:ne****** **@joergjooss.d e
Nov 17 '05 #5

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

Similar topics

6
6490
by: Stuart Golodetz | last post by:
Hi, I've got a minor casting issue which I need to check about (marked // <--). I was trying to do a static_cast on it (which didn't work, though I'm not sure why this should be the case?) I also tried reinterpret_cast (which is clearly an exceedingly dodgy thing to do; it worked, but I'm not sure whether it should have worked, or whether (the more likely scenario) it was just coincidence?) Finally, after a bit of trawling through the...
9
1688
by: Simon Elliott | last post by:
If I have a base class and several possible derived classes, and I have a pointer to the base class, what's the best way of determining whether the pointer is pointing to a base class or to a derived class? The classes have virtual functions, so I could use a dynamic_cast. Is there much overhead associated with this? Alternatively I could have an instance variable in the base class which derived classes are required to set, or a...
2
1752
by: Michael | last post by:
Ok Guys, on the same thread I'm writing a Game engine, which performs collision detection. I want to sepate the collision boundings libaray from the main game engine and load it as a library. If simplified this example but it illustrates the point.... :-) So i declare an abstract base class ( & function ): ///////////////////////////////////////////////////
29
5490
by: shmartonak | last post by:
For maximum portability what should the type of an array index be? Can any integer type be used safely? Or should I only use an unsigned type? Or what? If I'm using pointers to access array elements as *(mptr+k) where I've declared MYTYPE *mptr; what should be the type of 'k'? Should it be ptrdiff_t?
6
2033
by: Fernando Rodríguez | last post by:
Hi, I have a class called UrlFetcher and keep several instances inside an ArrayList. This class has a fecth() method. When I iterate through the list calling the fetch() method, I have to downcast from object to UrlFetch. This is pretty ugly... -------------------------------------------------------------- IEnumerator fetcher = fetchers.GetEnumerator();
5
19604
by: Stacey Levine | last post by:
I have a webservice that I wanted to return an ArrayList..Well the service compiles and runs when I have the output defined as ArrayList, but the WSDL defines the output as an Object so I was having a problem in the calling program. I searched online and found suggestions that I return an Array instead so I modified my code (below) to return an Array instead of an ArrayList. Now I get the message when I try to run just my webservice...
5
6504
by: Michael Primeaux | last post by:
I have a simple .NET 2.0 web service created with VS.NET 2005 with a single web method with the following signature: void HelloWorld(Guid parameter1); When calling this method I receive the following error: System.IndexOutOfRangeException: Index was outside the bounds of the array. at System.Web.Services.Protocols.HttpServerType..ctor(Type type) at System.Web.Services.Protocols.HttpServerProtocol.Initialize()
3
4037
by: forest demon | last post by:
for example, let's say I do something like, System.Diagnostics.Process.Start("notepad.exe","sample.txt"); if the user does a SaveAs (in notepad), how can i capture the path that the user selects? thanks...
5
5791
by: Ryan van Roode | last post by:
Hello, An API function gives me an object of class 'Blah'. I have subclassed 'Blah' and added a few methods: class EnhancedBlah extends Blah { function enhancement1() {} function enhancement2() {} }
0
9721
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, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
10635
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
1
10378
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 Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
10115
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 protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
9198
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, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
6881
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5550
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
1
4332
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
3861
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

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.