SafeBuffer.Write<T>(UInt64, T) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Important
This API is not CLS-compliant.
Writes a value type to memory at the given location.
public:
generic <typename T>
where T : value class void Write(System::UInt64 byteOffset, T value);
[System.CLSCompliant(false)]
public void Write<T> (ulong byteOffset, T value) where T : struct;
[<System.CLSCompliant(false)>]
member this.Write : uint64 * 'T -> unit (requires 'T : struct)
Public Sub Write(Of T As Structure) (byteOffset As ULong, value As T)
Type Parameters
- T
The value type to write.
Parameters
- byteOffset
- UInt64
The location at which to start writing. You may have to consider alignment issues.
- value
- T
The value to write.
- Attributes
Exceptions
The Initialize method has not been called.
Remarks
This method is equivalent to the following code:
*(T*)(bytePtr + byteOffset) = value;
Applies to
See also
Werk met ons samen op GitHub
De bron voor deze inhoud vindt u op GitHub, waar u ook problemen en pull-aanvragen kunt maken en bekijken. Raadpleeg onze gids voor inzenders voor meer informatie.