ATMLCommonLibrary.forms.ATMLXslTranslationForm.OnClosing C# (CSharp) Method

OnClosing() protected method

protected OnClosing ( CancelEventArgs e ) : void
e CancelEventArgs
return void
        protected override void OnClosing( CancelEventArgs e )
        {
            try
            {
                if (!string.IsNullOrEmpty( _tempFileName ))
                    File.Delete( _tempFileName );
            }
            catch (Exception err)
            {
                /* Do Nothing */
            }
            base.OnClosing( e );
        }