Reference Library
InsertDwordString Method (str)
NamespacesMBNCSUtilDataBufferInsertDwordString(String)
Inserts the specified value into the buffer as a 32-bit-style string using null bytes as the default padding.
Declaration Syntax
C#Visual BasicVisual C++
public void InsertDwordString(
	string str
)
Public Sub InsertDwordString ( _
	str As String _
)
public:
void InsertDwordString(
	String^ str
)
Parameters
str (String)
The string which may be at most 4 characters.
Remarks

This method inserts a string with the maximum length of 4 into the buffer, reversed. This mimics the C-style declarations of 4-character integer literals:

unsigned long int star_product = 'STAR';

which results in RATS being in memory.

Exceptions
ExceptionCondition
ArgumentNullExceptionThe str parameter was null (Nothing in Visual Basic).
ArgumentExceptionThe length of str was too great; maximum string length is 4 characters.

Assembly: Asgard5Library (Module: Asgard5Library)