7
votes
How to change filetype association in the registry?
In addition to the answers already provided, you can accomplish this by calling the command line programs "ASSOC" and "FTYPE". FTYPE associates a file type with a program. ASSOC associates a file …
3
votes
How do i convert string value to int? in C#
You'll have to strip the "0x" part, but this snippet works:
using System;
using System.Globalization;
public class StrToInt {
public static void Main(string[] args) {
s …
1
vote
Developing Math libraries
It's a little hard to say anything definitive one way or the other. I'd suggest sticking with C# if that's what you've started or what the rest of your project is based around. Keep some canonica …
1
vote
What is the point to a static method in a non-static class?
Sometime the "objective" of the function is particular to the class rather than the object (instance of the class).
For example, a factory method:
SomeClass obj = SomeClass. …
1
vote
Is there something like Python’s ‘with’ in C#?
C# has the using statement, as mentioned in another answer and documented here:
usin …
0
votes
HttpWebRequest Issues on file upload
You don't have any code in WriteCallback to indicate that you're done processing the event. So, I'm assuming your Main function or thread is not waiting for the request t …
5
votes
Program to corrupt a file?
This is kind of the approach behind Fuzz Testing, i.e. introduce random variations and see how your application copes. You …
0
votes
Looking for a good .NET data analysis/visualization/reporting control
You might consider ASPxPivotGrid which provides a lot of OLAP-like drilldown functionality and meets m …
