Search Results

3
votes
5answers
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? …
13
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. …
1
vote

Aligning content in a WPF Viewbox

According to MSDN the Viewbox is used to stretch the child elements. Since the child elements would be stretched, …
0
votes

Verbatim strings and Visual Studio

You may need to clarify your question. My first thought was that you just need to prefix the string with '@' to make them verbatim, but you already know that. string s = @"c:\my fo …
-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)) { ... } …
1
vote

Preventive vs Reactive C# programming

I believe you are correct that using exceptions as control statements is a bad practice. Exceptions in .Net are slow. It's always much better to do your own checks rather than using exceptions to …
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 …