//
archives

Archive for

How to Implement Pointer To Pointer in C# Without Using Unsafe Code.

1. Introduction. 1.1 In C#, pointer management has traditionally been done using the IntPtr type. 1.2 There is a large number of Marshal class methods that work with IntPtrs and they are very useful indeed. 1.3 However, IntPtr dereferencing (i.e. the referencing of data pointed to by a pointer which is itself pointed to by … Continue reading

Pointers to C++ Class Member Operators

1. Introduction. 1.1 In C++, it is possible to define a class member function type and thereafter declare variables of that type. 1.2 Note that it is also possible to define a class member operator type and thereafter declare variables of that type. 1.3 This article demonstrates how to do this with reference to a … Continue reading