Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
ProcessModule.cs
Go to the documentation of this file.
2
3namespace System.Diagnostics;
4
5[Designer("System.Diagnostics.Design.ProcessModuleDesigner, System.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
6public class ProcessModule : Component
7{
9
10 public string? ModuleName { get; internal set; }
11
12 public string? FileName { get; internal set; }
13
14 public IntPtr BaseAddress { get; internal set; }
15
16 public int ModuleMemorySize { get; internal set; }
17
18 public IntPtr EntryPointAddress { get; internal set; }
19
21
22 internal ProcessModule()
23 {
24 }
25
26 public override string ToString()
27 {
28 return base.ToString() + " (" + ModuleName + ")";
29 }
30}
static FileVersionInfo GetVersionInfo(string fileName)