473,320 Members | 1,887 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,320 software developers and data experts.

TypeLoad Exception

Hi,

I'm getting an System.TypeLoadException with this type def:

[StructLayout(LayoutKind.Explicit, CharSet=CharSet.Ansi)]
public struct SCFEDBTxnItem
{
[FieldOffset(0)] public SCFEDBTxnItemHeader sHeader;
[FieldOffset(0)] public SCFEDBTxnOrderItem sOrder;
[FieldOffset(0)] public SCFEDBTxnTradeItem sTrade;
[FieldOffset(0)] public SCFEDBTxnErrorItem sError;
[FieldOffset(0)] public SCFEDBTxnRequestItem sRequest;
}

So, what is the problem?
Nov 16 '05 #1
4 5516
Tunga,

What is the exception you are getting? It is most likely that the type
load exception is not coming from the code, but some other factor. Can you
give the full details of the exception?
--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard.caspershouse.com

"Tunga Torgal" <tu*********@hotmail.com> wrote in message
news:%2******************@tk2msftngp13.phx.gbl...
Hi,

I'm getting an System.TypeLoadException with this type def:

[StructLayout(LayoutKind.Explicit, CharSet=CharSet.Ansi)]
public struct SCFEDBTxnItem
{
[FieldOffset(0)] public SCFEDBTxnItemHeader sHeader;
[FieldOffset(0)] public SCFEDBTxnOrderItem sOrder;
[FieldOffset(0)] public SCFEDBTxnTradeItem sTrade;
[FieldOffset(0)] public SCFEDBTxnErrorItem sError;
[FieldOffset(0)] public SCFEDBTxnRequestItem sRequest;
}

So, what is the problem?

Nov 16 '05 #2
First, this is union...
So, everyfield must start at the same offset...

Am I wrong? Maybe, I did not understand the concept of fieldoffsets and
layoutkind.explicit...

"Dilip Krishnan" <dilipdotnet..NOSPAM..@apdiya.com> wrote in message
news:eU**************@TK2MSFTNGP10.phx.gbl...
Tunga,
From what I see its not byte aligned. Every feild seems to be at
offset 0. If for example sHeader is 4 bytes long then FieldOffset for
the sOrder field should be FieldOffset(4)
Hope that helps

Tunga Torgal wrote:
Hi,

I'm getting an System.TypeLoadException with this type def:

[StructLayout(LayoutKind.Explicit, CharSet=CharSet.Ansi)]
public struct SCFEDBTxnItem
{
[FieldOffset(0)] public SCFEDBTxnItemHeader sHeader;
[FieldOffset(0)] public SCFEDBTxnOrderItem sOrder;
[FieldOffset(0)] public SCFEDBTxnTradeItem sTrade;
[FieldOffset(0)] public SCFEDBTxnErrorItem sError;
[FieldOffset(0)] public SCFEDBTxnRequestItem sRequest;
}

So, what is the problem?


--
Regards,
Dilip Krishnan
MCAD, MCSD.net
dilipdotnet at apdiya dot com

Nov 16 '05 #3
Tunga,
From what I see its not byte aligned. Every feild seems to be at
offset 0. If for example sHeader is 4 bytes long then FieldOffset for
the sOrder field should be FieldOffset(4)
Hope that helps

Tunga Torgal wrote:
Hi,

I'm getting an System.TypeLoadException with this type def:

[StructLayout(LayoutKind.Explicit, CharSet=CharSet.Ansi)]
public struct SCFEDBTxnItem
{
[FieldOffset(0)] public SCFEDBTxnItemHeader sHeader;
[FieldOffset(0)] public SCFEDBTxnOrderItem sOrder;
[FieldOffset(0)] public SCFEDBTxnTradeItem sTrade;
[FieldOffset(0)] public SCFEDBTxnErrorItem sError;
[FieldOffset(0)] public SCFEDBTxnRequestItem sRequest;
}

So, what is the problem?


--
Regards,
Dilip Krishnan
MCAD, MCSD.net
dilipdotnet at apdiya dot com
Nov 16 '05 #4
Aah unions! I'm guessing, but I think its possibly because they field
offsets dont work for reference types? Basically it cant compute the
union type because it cant compute the sizes at design time?

Tunga Torgal wrote:
First, this is union...
So, everyfield must start at the same offset...

Am I wrong? Maybe, I did not understand the concept of fieldoffsets and
layoutkind.explicit...

"Dilip Krishnan" <dilipdotnet..NOSPAM..@apdiya.com> wrote in message
news:eU**************@TK2MSFTNGP10.phx.gbl...
Tunga,
From what I see its not byte aligned. Every feild seems to be at
offset 0. If for example sHeader is 4 bytes long then FieldOffset for
the sOrder field should be FieldOffset(4)
Hope that helps

Tunga Torgal wrote:

Hi,

I'm getting an System.TypeLoadException with this type def:

[StructLayout(LayoutKind.Explicit, CharSet=CharSet.Ansi)]
public struct SCFEDBTxnItem
{
[FieldOffset(0)] public SCFEDBTxnItemHeader sHeader;
[FieldOffset(0)] public SCFEDBTxnOrderItem sOrder;
[FieldOffset(0)] public SCFEDBTxnTradeItem sTrade;
[FieldOffset(0)] public SCFEDBTxnErrorItem sError;
[FieldOffset(0)] public SCFEDBTxnRequestItem sRequest;
}

So, what is the problem?


--
Regards,
Dilip Krishnan
MCAD, MCSD.net
dilipdotnet at apdiya dot com



--
Regards,
Dilip Krishnan
MCAD, MCSD.net
dilipdotnet at apdiya dot com
Nov 16 '05 #5

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

Similar topics

4
by: Nicolas Fleury | last post by:
Hi, I've made a small utility to re-raise an exception with the same stack as before with additional information in it. Since I want to keep the same exception type and that some types have very...
0
by: gabe | last post by:
Hello, I've been getting a TypeLoadException after doing a VBC command line build. I've included all of the /r - references and /i - imports for the assembly. The exception is thrown at runtime...
1
by: Old Wolf | last post by:
1. What is the difference between #include <stdexcept> and #include <exception> ? 2. Is there a list somewhere of what each standard exception is used for? either to throw them, or throw...
11
by: Master of C++ | last post by:
Hi, I am writing a simulation package in C++, and so far I've written about 8000 lines of code and have about 30 classes. I haven't used C++ exceptions so far (for various reasons). The only two...
4
by: maricel | last post by:
I have the following base table structure - DDL: CREATE TABLE "ADMINISTRATOR"."T1" ( "C1" INTEGER NOT NULL ) IN "TEST_TS" ; ALTER TABLE "ADMINISTRATOR"."T1" ADD PRIMARY KEY
5
by: PCC | last post by:
I am using the Exception Managment Application Block on Windows Server 2003 Enterprise and .NET v1.1. If I use the block with an ASP.NET web wervice or in a web application I get the following...
0
by: Tunga Torgal | last post by:
I get a typeload exception saying "because it contains an object field at offset 0 that is incorrectly aligned or overlapped by a non-object field." " here is my types :
44
by: craig | last post by:
I am wondering if there are some best practices for determining a strategy for using try/catch blocks within an application. My current thoughts are: 1. The code the initiates any high-level...
3
by: JohnDeHope3 | last post by:
First let me say that I understand that Asp.Net wraps my exception in an HttpUnhandledException. I have found a lot of discussion about that on the web, which was informative, but not helpful. Let...
2
by: Darko Miletic | last post by:
Recently I wrote a dll in c++ and to simplify the distribution I decided to link with multithreaded static library (/MT or /MTd option). In debug everything works fine but in release I get this: ...
0
by: DolphinDB | last post by:
Tired of spending countless mintues downsampling your data? Look no further! In this article, you’ll learn how to efficiently downsample 6.48 billion high-frequency records to 61 million...
0
by: ryjfgjl | last post by:
ExcelToDatabase: batch import excel into database automatically...
0
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 6 Mar 2024 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM). In this month's session, we are pleased to welcome back...
0
by: Vimpel783 | last post by:
Hello! Guys, I found this code on the Internet, but I need to modify it a little. It works well, the problem is this: Data is sent from only one cell, in this case B5, but it is necessary that data...
0
by: ArrayDB | last post by:
The error message I've encountered is; ERROR:root:Error generating model response: exception: access violation writing 0x0000000000005140, which seems to be indicative of an access violation...
1
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
1
by: Defcon1945 | last post by:
I'm trying to learn Python using Pycharm but import shutil doesn't work
1
by: Shællîpôpï 09 | last post by:
If u are using a keypad phone, how do u turn on JavaScript, to access features like WhatsApp, Facebook, Instagram....
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...

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.