コード例 #1
0
ファイル: Timer.cs プロジェクト: jdemeule/tidy-tools
        public void Stop(string name)
        {
            TimeVar t = m_timeVarMap[name];

            if (t == null)
            {
                return;
            }
            t.stop();
        }