Click here to Skip to main content
6,295,667 members and growing! (15,507 online)
Email Password   helpLost your password?
Platforms, Frameworks & Libraries » .NET Framework » General     Advanced

Pointer Library for All .NET Languages (written in MSIL)

By Turion

This pointer library is made to be used from for any .NET language.
MSIL, Windows, .NET 2.0, .NET 3.0VS2005, VS2008, Dev
Version:2 (See All)
Posted:26 Sep 2007
Updated:17 Oct 2007
Views:12,406
Bookmarked:8 times
Announcements
Loading...
 
Search    
Advanced Search
printPrint   Broken Article?Report       add Share
  Discuss Discuss   Recommend Article Email
22 votes for this article.
Popularity: 2.09 Rating: 1.55 out of 5
15 votes, 68.2%
1
2 votes, 9.1%
2
2 votes, 9.1%
3
2 votes, 9.1%
4
1 vote, 4.5%
5

Introduction

This library is designed to allow users of all .NET languages to be able to use pointers without trouble, just like those using C# or C++. Of course, it will be at the user's own risk.

Using the code

I was bothered by the fact that pointers (and related operations) can only be accessed in C# and C++, and that they only work on unmanaged types. I then decided to make a library which would overcome this, because:

  1. certain P/Invoke methods need it,
  2. because languages other than C++ and C# do not support pointers, and
  3. because the pointer structure is now strongly typed.

Just beware that using the Marshal class may be more accurate than this library, because the methods are for managed types (before marshaling). I noticed this only after I made the library. But, hey, if it works, use it!

Points of interest

The method ManagedSizeOf<T>() returns the same thing as saying sizeof(T) in C#, only that it is not restricted to unmanaged types - if T is a reference type, it returns the size of the reference (which on x86 computers seems to be 4 bytes). If T is a value type, it returns the size of that type, whether or not it is managed. The reason that I put the word Managed in front of it was to indicate that it returns the size of the type before marshaling, unlike Marshal.SizeOf().

The ManagedSizeOf(System.Type type) method uses Reflection to call the other ManagedSizeOf method, while substituting T with the type. Therefore, it is inherently slower than the previous method and should be used with care.

The GetAddressOf<T>(ref T obj) method returns the address of that variable, whether or not it is a reference type.

The Pointer<T> structure encapsulates a variable of type T* which can be indexed like normal pointers (like ptr[9]), as well as converted to System.IntPtr and other formats. If the language supports pointers (like in C#), then the pointer field can be directly used. Otherwise, indexing and other properties must be used, or it can be converted to a System.IntPtr.

Here is a bug I found, but do not know how to fix (any suggestions are appreciated): on one computer (on which I was not an Administrator), a test program was run. However, a VerificationException occurred before entering Main, because the runtime could not verify the code in UnsafeLibrary.dll. I only saw this error once.

This program may have bugs.. don't rely on it being correct! Tell me if you find any. I am still not sure whether the AddressOf method works correctly all the time, because I do not know whether it returns the address of the ref parameter or a copy of it.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

About the Author

Turion


Member

Location: United States United States

Other popular .NET Framework articles:

Article Top
You must Sign In to use this message board.
FAQ FAQ 
 
Noise Tolerance  Layout  Per page   
 Msgs 1 to 24 of 24 (Total in Forum: 24) (Refresh)FirstPrevNext
GeneralThanks PinmemberTheraot8:08 20 Feb '09  
GeneralRe: Thanks PinmemberTheraot15:56 24 Feb '09  
GeneralGood job Pinmembersilverair3:34 16 Oct '07  
GeneralRe: Good job PinmemberTurion7:54 17 Oct '07  
GeneralInteresting, but..... PinmemberMichael B. Hansen23:57 26 Sep '07  
GeneralRe: Interesting, but..... PinmemberTurion10:16 27 Sep '07  
GeneralRe: Interesting, but..... PinmemberMichael B. Hansen23:43 27 Sep '07  
AnswerRe: Interesting, but..... PinmemberTurion6:33 28 Sep '07  
GeneralKudos Pinmemberrcardare19:46 26 Sep '07  
GeneralWhy on earth PinmemberDancesWithBamboo16:46 26 Sep '07  
GeneralRe: Why on earth PinmemberTurion16:48 26 Sep '07  
GeneralRe: Why on earth PinmemberScott Dorman16:55 26 Sep '07  
GeneralRe: Why on earth PinmemberKy Nam20:13 26 Sep '07  
GeneralHow is this useful? PinmemberScott Dorman11:16 26 Sep '07  
GeneralRe: How is this useful? PinmemberTurion16:50 26 Sep '07  
GeneralRe: How is this useful? PinmemberScott Dorman16:53 26 Sep '07  
AnswerRe: How is this useful? PinmemberTurion10:13 27 Sep '07  
GeneralRe: How is this useful? PinmemberScott Dorman10:34 27 Sep '07  
GeneralRe: How is this useful? PinmemberTurion6:34 28 Sep '07  
GeneralDispose PinmemberPete O'Hanlon11:00 26 Sep '07  
GeneralRe: Dispose PinmemberScott Dorman11:15 26 Sep '07  
GeneralRe: Dispose PinmemberTurion16:52 26 Sep '07  
GeneralPeVerify PinmemberDaniel Grunwald10:49 26 Sep '07  
GeneralRe: PeVerify PinmemberTurion16:49 26 Sep '07  

General General    News News    Question Question    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

PermaLink | Privacy | Terms of Use
Last Updated: 17 Oct 2007
Editor: Smitha Vijayan
Copyright 2007 by Turion
Everything else Copyright © CodeProject, 1999-2009
Web13 | Advertise on the Code Project