LitDev.LDSound.Start C# (CSharp) Method

Start() public static method

Start recording sound.
public static Start ( ) : void
return void
        public static void Start()
        {
            if (bRecording) mciSendString("close recsound ", "", 0, 0);
            mciSendString("open new Type waveaudio Alias recsound", "", 0, 0);
            mciSendString("record recsound", "", 0, 0);
            bRecording = true;
        }