TypedView Constructor Method

Initializes a new instance of the TypedView class

public TypedXML(

long size

);

public TypedXML(

string str

);

 

Remarks

This method calls the construtor of TypedBuffer to allocated an unmanaged typed buffer of type “VIEW” with a size specified by argument size or str.Length property.

 

TypedXML.GetString Method

Gets a specified number of ANSI characters from the start of the buffer in this instance and returns them as a string.

public string GetString(

int start,

int len

);

 

Remarks

 

TypedXML.PutString Method

Copies a sub-string to a specified position of the typed buffer.

public int PutString(

int start,

string str,

int len

);

 

Remarks