C# is a multi-paradigm, managed, object-oriented programming language created by Microsoft in conjunction with the .NET platform. C# is also used with non-Microsoft implementations (most notably, Mono). Versions 1.0/1.2 and 2.0 of C# were submitted and approved as both ECMA and ISO/IEC standards. ...

learn more… | top users | synonyms (5) | c# jobs

273
votes
35answers
219k views

Create Excel (.XLS and .XLSX) file from C# [closed]

What is the best tool for creating an Excel Spreadsheet with C#? Ideally, I would like open source so I don't have to add any third party dependencies to my code, and I would like to avoid using ...
298
votes
30answers
62k views

What Are Some Good .NET Profilers?

What profilers have you used when working with .net programs, and which would you particularly recommend?
86
votes
18answers
88k views

How to update GUI from another thread in C#?

What is the simplest way to update an label from another thread? My problem: I have a winform(thread1), from that I'm starting another thread(thread2). While thread2 is processing some files I would ...
345
votes
33answers
34k views

Calculating relative time

Given a specific DateTime value, how do I display relative time, like 2 hours ago 3 days ago a month ago etc...?
144
votes
18answers
55k views

How to properly clean up Excel interop objects in C#

I'm using the Excel interop in C# (ApplicationClass) and have placed the following code in my finally clause: while (System.Runtime.InteropServices.Marshal.ReleaseComObject(excelSheet) != 0) { } ...
65
votes
12answers
8k views

Why are mutable structs evil?

Following the discussions here on SO I already read several times the remark that mutable structs are evil (like in the answer to this question). What's the actual problem with mutability and ...
261
votes
15answers
159k views

Cloning objects in C#

I want to do something like... myObject myObj = GetmyObj()//create and fill a new object myObject newObj = myObj.Clone(); ...and then make changes to the new object that are not reflected in the ...
114
votes
0answers
58k views

Looking for C# HTML parser [closed]

Possible Duplicate: What is the best way to parse html in C#? I would like to extract the structure of the HTML document - so the tags are more important than the content. Ideally, it ...
305
votes
92answers
37k views

Use of var keyword in C# [closed]

After discussion with colleagues regarding the use of the 'var' keyword in C# 3 I wondered what people's opinions were on the appropriate uses of type inference via var? For example I rather lazily ...
66
votes
9answers
19k views

Creating a blocking Queue<T> in .NET?

I have a scenario where I have multiple threads adding to a queue and multiple threads reading from the same queue. If the queue reaches a specific size all threads that are filling the queue will be ...
142
votes
13answers
85k views

Dynamic LINQ OrderBy

I found an example in the VS2008 Examples for Dynamic LINQ that allows you to use a sql-like string (e.g. OrderBy("Name, Age DESC")) for ordering. Unfortunately, the method included only works on ...
66
votes
4answers
7k views

Dependency Inject (DI) “friendly” library

I'm pondering the design of a C# library, that will have several different high level functions. Of course, those high-level functions will be implemented using the SOLID class design principles as ...
121
votes
3answers
52k views

How to use HTML Agility pack

How do I use the HTML Agility Pack? My XHTML document is not completely valid. That's why I wanted to use it. How do I use it in my project? My project is in C#.
52
votes
12answers
114k views

Encrypt/Decrypt string in .NET

Can someone give me the code to Encrypt and Decrypt a string in C#? I'm trying to do this with TripleDES but that is not a requirement.
93
votes
20answers
37k views

What are the best C# .NET books? [closed]

What are your top 3 all-time best C# .NET books? And why? They could be for specific areas of .NET or be more general books.
172
votes
8answers
40k views

Why is it important to override GetHashCode when Equals method is overriden in C#?

Given the following class public class Foo { public int FooId { get; set; } public string FooName { get; set; } public override bool Equals(object obj) { Foo fooItem = obj as ...
118
votes
9answers
65k views

Sending email in .NET through Gmail

Instead of relying on my host to send email, I was thinking of sending the messages though my Gmail account. The emails are personalized emails to the bands I play on my show. Is it possible to do?
148
votes
30answers
117k views

Reading Excel files from C#

Is there a free or open source library to read Excel files (.xls) directly from a C# program? It does not need to be too fancy, just to select a worksheet and read the data as strings. So far, I've ...
134
votes
10answers
53k views

Best way to copy between two Stream instances - C#

What is the best way to copy the contents of one stream to another? Is there a standard utility method for this?
58
votes
5answers
14k views

Random number generator not working the way I had planned (C#)

This is a very strange problem. Here is my code: //Function to get random number public static int RandomNumber(int min, int max) { Random random = new Random(); return random.Next(min, ...
306
votes
31answers
82k views

How do I calculate someone's age in C#?

Given a DateTime representing their birthday, how do I calculate someone's age?
156
votes
21answers
132k views

How do you convert Byte Array to Hexadecimal String, and vice versa, in C#?

This is probably a common question over the Internet, but I couldn't find an answer that neatly explains how you can convert a byte array to a hexadecimal string, and vice versa. Any takers?
84
votes
8answers
52k views

How do you do a deep copy an object in .Net (C# specifically)?

I want a true deep copy. In Java, this was easy, but how do you do it in C#?
264
votes
0answers
56k views

String vs string in C# [closed]

Possible Duplicate: In C# what is the difference between String and string In C# the string keyword (highlighted in Visual Studio as a data type) is just a shortcut to the String class ...
44
votes
8answers
7k views

C#: Is using Random and OrderBy a good shuffle algorithm?

I have read an article about various shuffle algorithms over at Coding Horror. I have seen that somewhere people have done this to shuffle a list: var r = new Random(); var shuffled = ...
86
votes
13answers
16k views

What is the best workaround for the WCF client `using` block issue?

I like instantiating my WCF service clients within a using block as it's pretty much the standard way to use resources that implement IDisposable: using (var client = new SomeWCFServiceClient()) { ...
188
votes
14answers
25k views

When to use struct in C#?

When should you use struct and not class in C#? My conceptual model is that structs are used in times when the item is merely a collection of value types. A way to logically hold them all together ...
245
votes
18answers
43k views

What C# mocking framework to use?

I want to start using mock objects on my next C# project. After a quick Google search I've found there are many: NMock EasyMock.NET TypeMock Isolator Commercial / Paid Rhino Mocks Moq ...
27
votes
12answers
5k views

Tips for optimizing C#/.NET programs [closed]

It seems like optimization is a lost art these days. Wasn't there a time when all programmers squeezed every ounce of efficiency from their code? Often doing so while walking 5 miles in the snow? In ...
85
votes
9answers
102k views

Cross-thread operation not valid: Control accessed from a thread other than the thread it was created on

I have a scenario. (Windows Forms, C#, .NET) There is a main form which hosts some user control. The user control does some heavy data operation, such that if I directly call the Usercontrol_Load ...
63
votes
13answers
5k views

Casting vs using the 'as' keyword in the CLR

I'm learning about design patterns and because of that I've ended using a lot of interfaces. One of my "goals" is to program to an interface, not an implementation. What I've found is that I'm doing ...
79
votes
6answers
87k views

Parse JSON in C#

I'm trying to parse some JSON data from the Google AJAX Search API. I have this URL and I'd like to break it down so that the results are displayed. I've currently written this code, but I'm pretty ...
60
votes
14answers
18k views

C# - Is there a better alternative than this to 'switch on type'?

Seeing as C# can't switch on a Type (which I gather wasn't added as a special case because is-a relationships mean that more than one distinct case might apply), is there a better way to simulate ...
297
votes
27answers
47k views

What is the difference between String and string

In C#, what is the difference between String and string? (note the case) Example: string s = "Hello, World"; String S = "Hello, World"; Also, what are the guidelines for the use of each?
220
votes
9answers
60k views

What is the difference between Decimal, Float and Double in C#?

What is the difference between Decimal, Float and Double in C#? When would someone use one of these?
64
votes
3answers
65k views

Parsing JSON using Json.net

I'm trying to parse some JSON using the JSon.Net library. The documentation seems a little sparse and I'm confused as to how to accomplish what I need. Here is the format for the JSON I need to ...
78
votes
11answers
54k views

Is there a way to check if a file is in use?

I'm writing a program in C# that needs to repeatedly access 1 image file. Most of the time it works, but if my computer's running fast, it will try to access the file before it's been saved back to ...
112
votes
33answers
17k views

Protect .NET code from reverse engineering?

Obfuscation is one way, but it can't protect from breaking the piracy protection security of the application. How to make sure that the application is not tampered with, and how to make sure that the ...
131
votes
10answers
59k views

Repository pattern tutorial in C# [closed]

Can anyone recommend good tutorial on repository pattern usage, in C#?
314
votes
4answers
22k views

What are the correct version numbers for C#? [closed]

What are the correct version numbers for C#? What came out when? Why can't I find any answers about C# 3.5? [This question is primarily to aid those who are searching for an answer using an incorrect ...
122
votes
9answers
112k views

How To: Execute command line in C#, get STD OUT results

How do I execute a command-line program from C# and get back the STD OUT results. Specifically, I want to execute DIFF on two files that are programmatically selected and write the results to a text ...
72
votes
20answers
69k views

Convert HTML to PDF in .NET [closed]

I want to generate PDF by passing HTML contents to a function. I have made use of ItextSharp for this but it does not perform well when it encounters Table and the layout just gets messy. Is there ...
55
votes
8answers
38k views

Using .NET, how can you find the mime type of a file based on the file signature not the extension

I am looking for a simple way to get a mime type where the file extension is incorrect or not given, something similar to this question only in .Net.
46
votes
8answers
21k views

Random row from Linq to Sql

What is the best (and fastest) way to retreive a random row using Linq to SQL when I have a condition, e.g. some field must be true ?
63
votes
4answers
26k views

How to force C# App to run as administrator on Windows 7

Once my C# program is installed on a client machine, how to force my program to run as administrator on Windows 7. Thank's in advance
5
votes
2answers
5k views

WebBrowser Control in a new thread

I have a list Uri's that I want "clicked" To achieve this I"m trying to create a new web-browser control per Uri. I create a new thread per Uri. The problem I'm having is the thread end before the ...
143
votes
14answers
27k views

Which .NET Dependency Injection frameworks are worth looking into?

Which C#/.NET Dependency Injection frameworks are worth looking into? And what can you say about their complexity and speed.
78
votes
20answers
42k views

How to detect Windows 64 bit platform with .net?

In a .net 2.0 C# application I use the following code to detect the operating system platform: string os_platform = System.Environment.OSVersion.Platform.ToString(); This returns "Win32NT". The ...
20
votes
12answers
43k views

What is the best book to learn C#? [closed]

What is the best book to learn C# for someone who has little programming experience?
168
votes
56answers
13k views

What is the worst gotcha in C# or .NET?

This question is similar to this one, but focused on C# and .NET. I was recently working with a DateTime object, and wrote something like this: DateTime dt = DateTime.Now; dt.AddDays(1); return ...

1 2 3 4 5 1558