IPointer

Top  Previous  Next

What is partially translated > Pointers > IPointer

 

IPointer is the common interface of the two C# classes Pointer<T> and PChar, which are used for the simulation of Delphi pointers.

 

 

 

public interface IPointer<T>

{

 

   int Length

   {

     get;

   }

 

   int Position

   {

     get;

   }

 

   bool IsNull();

   void SetNull();

   T Deref();

   void Assign(T c);

   void Inc(int i);

   void Dec(int i);

};

 

 

 



This page belongs to the Delphi2C# Documentation

Delphi2C# home  Content