Mono.Terminal.RunState.Dispose C# (CSharp) Метод

Dispose() публичный Метод

public Dispose ( ) : void
Результат void
        public void Dispose()
        {
            Dispose (true);
            GC.SuppressFinalize(this);
        }

Same methods

RunState::Dispose ( bool disposing ) : void

Usage Example

Пример #1
0
 /// <summary>
 ///   Use this method to complete an execution started with Begin
 /// </summary>
 public static void End(RunState state)
 {
     if (state == null)
         throw new ArgumentNullException ("state");
     state.Dispose ();
 }