System.Diagnostics.ProcessModule
namespace System.Diagnostics
{
public class ProcessModule : Component
{
public IntPtr BaseAddress { get; }
public IntPtr EntryPointAddress { get; }
public string FileName { get; }
public FileVersionInfo FileVersionInfo { get; }
public int ModuleMemorySize { get; }
public string ModuleName { get; }
}
}