473,473 Members | 1,759 Online
Bytes | Software Development & Data Engineering Community
Create Post

Home Posts Topics Members FAQ

array question

I'm having one or more classes that contains only declarations of primitives and primitives initialized arrays
i.e:
class PrimitivesStructure
{
public int32 integer1;
public char[] array1 = new char[20];
public int[] array2 = new int[10];
...
}
How can I found, dianmically, from another class, the length in bytes of declared primitives arrays?
For primitive fields it's simple:

PrimitivesStructure myObject = new PrimitivesStructure();
foreach (System.Reflection.FieldInfo fi in myObject.GetType().GetFields())
{
if (!fi.FieldType.IsArray)
Console.WriteLine(System.Runtime.InteropServices.M arshal.SizeOf(Activator..CreateInstance(fi.FieldTy pe)));
}

--
Horatiu Ripa

Nov 15 '05 #1
1 1400
Horatiu,

Technically, what you are doing isn't correct. When you use the static
SizeOf method on the Marshal class, it is the size of the marshaled data,
not of the representation in .NET. Granted, there usually is a one-to-one
relationship between the number of bytes used to represent the type in .NET
and in the unmanaged realm, but in general, it should not be assumed that is
the case.

What you could do is use the sizeof operator, but that is only allowed
in unsafe code. If that is not acceptable, then you should create a method
which will map the types to their sizes.

Hope this helps.

--
- Nicholas Paldino [.NET/C# MVP]
- nick(dot)paldino=at=exisconsulting<dot>com

"Horatiu Ripa" <un****@businessco.us> wrote in message
news:%2****************@TK2MSFTNGP12.phx.gbl...
I'm having one or more classes that contains only declarations of primitives
and primitives initialized arrays
i.e:
class PrimitivesStructure
{
public int32 integer1;
public char[] array1 = new char[20];
public int[] array2 = new int[10];
...
}
How can I found, dianmically, from another class, the length in bytes of
declared primitives arrays?
For primitive fields it's simple:

PrimitivesStructure myObject = new PrimitivesStructure();
foreach (System.Reflection.FieldInfo fi in myObject.GetType().GetFields())
{
if (!fi.FieldType.IsArray)

Console.WriteLine(System.Runtime.InteropServices.M arshal.SizeOf(Activator.Cr
eateInstance(fi.FieldType)));
}

--
Horatiu Ripa
Nov 15 '05 #2

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

Similar topics

3
by: SilverWolf | last post by:
I need some help with sorting and shuffling array of strings. I can't seem to get qsort working, and I don't even know how to start to shuffle the array. Here is what I have for now: #include...
9
by: buda | last post by:
Hi, I've been wondering for a while now (and always forgot to ask :) what is the exact quote from the Standard that forbids the use of (&array) (when x >= number_of_columns) as stated in the FAQ...
3
by: Pol Bawin | last post by:
Hi All, One : I have a property that get/set a array of an abstract class A By default my array is null In the propertygrid, It is not works correctly when my array is null. (when my array...
11
by: Geoff Cox | last post by:
Hello, I am trying to get a grip on where to place the initialization of two arrays in the code below which was created using Visual C++ 2005 Express Beta 2... private: static array<String^>^...
28
by: anonymous | last post by:
I have couple of questions related to array addresses. As they belong to the same block, I am putting them here in one single post. I hope nobody minds: char array; int address; Questions...
104
by: Leszek | last post by:
Hi. Is it possible in javascript to operate on an array without knowing how mamy elements it has? What i want to do is sending an array to a script, and this script should add all values from...
51
by: Pedro Graca | last post by:
I run into a strange warning (for me) today (I was trying to improve the score of the UVA #10018 Programming Challenge). $ gcc -W -Wall -std=c89 -pedantic -O2 10018-clc.c -o 10018-clc...
7
by: heddy | last post by:
I have an array of objects. When I use Array.Resize<T>(ref Object,int Newsize); and the newsize is smaller then what the array was previously, are the resources allocated to the objects that are...
8
by: T. Wintershoven | last post by:
Hello all, I have a form with some checkboxes. The names of these checkboxes come from an array. When i click the submit button the resultcode doesn't recognize the names when i want to check...
4
by: mab464 | last post by:
I have this code on my WAMP server running on my XP machine if ( isset( $_POST ) ) { for($i=0; $i<count($_POST);$i++) { if ($ans != NULL ) $ans .= ", " . $_POST ; // Not the first...
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
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
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,...
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
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...
1
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...
0
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...
0
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 ...
1
muto222
php
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.