SymCleanup

[DllImport("Advapi32.dll", SetLastError = true)][return: MarshalAs(UnmanagedType.Bool)]
public static extern bool SymCleanup(
   IntPtr hProcess
);

Microsoft documentation: Link

Last updated