Initialize() protected method

protected Initialize ( Inferior target ) : bool
target Inferior
return bool
示例#1
0
        public static ThreadDB Create(Process process, Inferior target)
        {
            ThreadDB db = new ThreadDB (process);
            if (!db.Initialize (target))
                return null;

            return db;
        }
示例#2
0
        public static ThreadDB Create(Process process, Inferior target)
        {
            ThreadDB db = new ThreadDB(process);

            if (!db.Initialize(target))
            {
                return(null);
            }

            return(db);
        }