csharp set cursor to loading and back

Code Example - csharp set cursor to loading and back

                
                        // Set cursor as hourglass
Cursor.Current = Cursors.WaitCursor;

// Execute your time-intensive hashing code here...

// Set cursor as default arrow
Cursor.Current = Cursors.Default;