در C #، من به شما آموزش خواهم داد که چگونه یک برنامه را ایجاد کنید که صدای ضبط شده را پخش کند (میکروفون) با استفاده از C #. Now, let's start this tutorial! 1. Let's start with creating a Windows Form Application for this tutorial by following the following steps in Microsoft Visual Studio: Go to File, click New Project, and choose Windows Application and name your program as microphone. 2. Next, add three buttons named Button1 as record button for recording voice, Button2 as save and stop button, and Button3 for playing the recorded audio. You must design your interface like this: 3, Import System.Runtime.InteropServices namespace. using System.Diagnostics ; using System ; using System.Windows.Forms ; using System.Collections ; using System.Drawing ; using System.Data ; using System.Collections.Generic ;     using System.Runtime.InteropServices ; 4. Now, in your code module, create a function named record that will access the winmm.dll. [ DllImport( "winmm. ...