コード例 #1
0
ファイル: View.cs プロジェクト: WeekendProject/what-the-heck
        //////////////////////////////////////////////////////////////////////////////

        #region IDisposable

        public void Dispose()
        {
            NotificationCenter.UnregisterNotifications(this);
            TimerManager.CancelTimers(this);

            OnDispose();

            for (int i = 0; i < m_subviews.Count; ++i)
            {
                m_subviews[i].Dispose();
            }
        }
コード例 #2
0
 public void SetUp()
 {
     File.Delete(kPreferencesPath);
     TimerManager.CancelTimers();
 }