Click or drag to resize
Accord.NET (logo)

SystemTools Class

Set of systems tools.
Inheritance Hierarchy
SystemObject
  AccordSystemTools

Namespace:  Accord
Assembly:  Accord (in Accord.dll) Version: 3.8.0
Syntax
public static class SystemTools
Request Example View Source

The SystemTools type exposes the following members.

Methods
  NameDescription
Public methodStatic memberCopyUnmanagedMemory(Byte*, Byte*, Int32)
Copy block of unmanaged memory.
Public methodStatic memberCopyUnmanagedMemory(IntPtr, IntPtr, Int32)
Copy block of unmanaged memory.
Public methodStatic memberIsRunningOnMono
Determines whether the code is running under Mono.
Public methodStatic memberSetUnmanagedMemory(Byte*, Int32, Int32)
Fill memory region with specified value.
Public methodStatic memberSetUnmanagedMemory(IntPtr, Int32, Int32)
Fill memory region with specified value.
Top
Remarks

The class is a container of different system tools, which are used across the framework. Some of these tools are platform specific, so their implementation is different on different platform, like .NET and Mono.

See Also