DroidExplorer.Core.IO.ProcessInfo.ProcessInfo C# (CSharp) Method

ProcessInfo() public method

public ProcessInfo ( int id, string name, int thread, long vss, long rss, string user, int cpu ) : System
id int
name string
thread int
vss long
rss long
user string
cpu int
return System
        public ProcessInfo( int id, string name, int thread, long vss, long rss, string user, int cpu )
        {
            this.PID = id;
              this.User = user;
              this.Name = name;
              this.Thread = thread;
              this.Vss = vss;
              this.Rss = rss;
              this.Cpu = cpu;
        }

Same methods

ProcessInfo::ProcessInfo ( int id, string name, int ppid, long size, string user ) : System
ProcessInfo