473,385 Members | 1,472 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,385 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 5521
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: ...
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...
0
by: ryjfgjl | last post by:
In our work, we often need to import Excel data into databases (such as MySQL, SQL Server, Oracle) for data analysis and processing. Usually, we use database tools like Navicat or the Excel import...
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: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
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
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
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...

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.