Mp3Sharp.StreamedSound.Loop C# (CSharp) Méthode

Loop() public méthode

public Loop ( ) : void
Résultat void
        public void Loop()
        {
            InitBuffer();
            ERSB.Play();
        }

Usage Example

Exemple #1
0
 private void btnPlay_Click(object sender, System.EventArgs e)
 {
     if (null != ApplicationStreamedSound)
     {
         if (cbLoopCheck.Checked)
         {
             ApplicationStreamedSound.Loop();
         }
         else
         {
             ApplicationStreamedSound.Play();
         }
     }
 }