Is there any way to make a musical note in C# / javascript? So you specify frequency, pitch, etc. and it plays something?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
C#, yes. JavaScript, not really (you could use Ajax and the HTML5
<audio />tag but that’s not really a great idea).In C#, you would do:
. There are also various other ways to do about the same thing.