1
vote
Fastest way to get productive in VS 08 and C#
I look at the move from Python to C# as a step down the evolutionary ladder.
Expect a much more verbose experience (e.g. variable declarations and class properties).
Keep an eye on …
2
votes
High speed graphing control for .NET (or MFC)?
DirectX used to have .NET bindings (not sure about current version). It includes support for high-performan …
1
vote
3
votes
How to: unset variable in C# .NET?
Maybe you'd like to free the object that the variable is referencing:
MyVar = null;
…
7
votes
Best Server-side .Net PDF editing library
Have a look at iTextSharp. iTextSharp is a port of the iText , a free Java …
0
votes
Reading from file not fast enough, how would I speed it up?
The loop and StringBuilder may be redundant; Try using
ReadToEnd.
…
0
votes
Should I agree to ban the “using” directive from my c# projects?
The Law of Demeter says you should use only one dot:
For many modern object oriented languag …
1
vote
Send document to printer with C#
The PrintDocument documentation contains a detailed example of printing from …
-1
votes
How do I get all installed fixed-width fonts?
You can use the InstalledFontCollection class.
using System. …
1
vote
0
votes
Looping through 2 Lists at once
Senthil Kumar's tech blog, has a series covering implementations of (Python) Itertools for C#, including …
-1
votes
Can I Format A String Like A Number in .NET?
To control string format of a number for display in an ASP.NET Gridview or another control, you can wrap your item in a helper class for display purposes:
public class PhoneDisplay
…
2
votes
.NET Spell Check control?
Not a redlining control, but: Aspell.Net is a Free and Open Source .Net spell checking component. Based on the GNU Aspell project, A …
5
votes
Best way to do TDD in express versions of visual studio(eg VB Express)
Nunit seems to work independently, why not try it with the express versions of Visual Studio?
It looks like you have to use the t …
0
votes
Execute a JavaScript function in a C# application.
Windows Script Host (WSH) is a Windows administration tool. You can use PInvoke to activate it from C …
