Beispiel #1
0
        public static new bool Show()
        {
            TermsOfService t = new TermsOfService();
            t.ShowDialog();
            bool res = t.Result;
            bool rem = t.Remember;
            t.Dispose();
            t = null;

            Settings.WriteTosAnswer(rem);

            return res;
        }
Beispiel #2
0
        public static new bool Show()
        {
            TermsOfService t = new TermsOfService();

            t.ShowDialog();
            bool res = t.Result;
            bool rem = t.Remember;

            t.Dispose();
            t = null;

            Settings.WriteTosAnswer(rem);

            return(res);
        }