Создаём класс NativeMethods.cs
Записываем в него следующий код:
namespace AntiVM
{
using System;
using System.Runtime.InteropServices;
internal static class NativeMethods
{
[DllImport("kernel32.dll", BestFitMapping = false, CharSet = CharSet.Unicode)]
internal...