Initialize() protected method

protected Initialize ( Inferior target ) : bool
target Inferior
return bool
コード例 #1
0
ファイル: ThreadDB.cs プロジェクト: baulig/debugger
        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);
        }