This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System.ComponentModel; | |
using System.Runtime.CompilerServices; | |
/// <summary> | |
/// Represents an object that notifies subscribers of property value changes. | |
/// Implements the <see cref="INotifyPropertyChanged"/> interface. | |
/// </summary> | |
public abstract class ObservableObject : INotifyPropertyChanged | |
{ | |
/// <summary> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Diagnostics; | |
using System.Text; | |
using System.Threading; | |
using System.Threading.Tasks; | |
/// <summary> | |
/// A helper class for executing external processes asynchronously. | |
/// </summary> | |
public static class ProcessAyncHelper |