DroidExplorer.Core.IO.ProcessInfo.ProcessInfo C# (CSharp) 메소드

ProcessInfo() 공개 메소드

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
리턴 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