SoundLibrary.Wave.WaveReader.Close C# (CSharp) Method

Close() public method

Wave ファイルを閉じる。
public Close ( ) : void
return void
		public void Close()
		{
			if(this.reader != null)
			{
				this.reader.Close();
				this.reader = null;
			}
		}