Dispose() public method

public Dispose ( ) : void
return void
コード例 #1
0
ファイル: gui.cs プロジェクト: mono/mono-curses
 /// <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 ();
 }