3
votes
6answers
2k views
How can I make the computer beep in C#?
How do I make the computer's internal speaker beep in C# without external speakers?
…
15
votes
How can I make the computer beep in C#?
In .Net 2.0, you can use Console.Beep().
// Default beep
Console.Beep();
You can also specify the frequency and length of the beep in milliseconds.
…
-2
votes
In what ways do you make use of C# Lambda Expressions?
Casting a collection of objects.
foreach(MyCustomObject co in objects.Select(o => o As MyCustomObject))
{
...
}
…
0
votes
Linq To SQL Attach/Refresh Entity Object
Did you try
context.Refresh(RefreshMode.OverwriteCurrentValues, faculty);
after submit changes where context is your linq2sql datacontext and facult …
