C# is a high level, general-purpose, garbage-collected and object-oriented programming language created by Microsoft.
26
votes
7answers
51k views
C# List<> Sort by x then y
Similar to this question, but in 2.0, we want to sort by one element, then another. we want to achieve the functional equivalent of SELECT * from Table ORDER BY x, y
We have a class that ...
19
votes
5answers
382 views
Default value for nullable value in c# 2.0
Using C# 2.0, I can specify a default parameter value like so:
static void Test([DefaultParameterValueAttribute(null)] String x) {}
Since this C# 4.0 syntax isn't available:
static void ...
18
votes
3answers
24k views
how to update the value stored in Dictionary in C#?
I work on .net 2.0 and would like to do the following.
I want to update the value in the Dictionary for a specific key. I will be putting it in a for loop so that the value gets updated for all the ...
14
votes
5answers
24k views
Using C# MethodInvoker.Invoke() for a GUI app… is this good?
Using C# 2.0 and the MethodInvoker delegate, I have a GUI application receiving some event from either the GUI thread or from a worker thread.
I use the following pattern for handling the event in ...
13
votes
5answers
3k views
Speed up File.Exists for non existing network shares
I have to check if a set of file paths represent an existing file.
It works fine except when the path contains a network share on a machine that's not on the current network. In this case it takes a ...
12
votes
2answers
479 views
C#, weird optimization
I'm trying to read my compiled C# code.
this is my code:
using(OleDbCommand insertCommand = new OleDbCommand("...", connection))
{
// do super stuff
}
But!
We all know that a using gets ...
12
votes
4answers
15k views
C# thread pool limiting threads
Alright...I've given the site a fair search and have read over many posts about this topic. I found this question: http://stackoverflow.com/questions/435668/code-for-a-simple-thread-pool-in-c ...
10
votes
1answer
207 views
More trivia than really important: Why no new() constraint on Activator.CreateInstance<T>()?
I think there are people who may be able to answer this, this is a question out of curiosity:
The generic CreateInstance method from System.Activator, introduced in .NET v2 has no type constraints on ...
10
votes
4answers
394 views
Test events with nunit
im just starting with TDD and could solve most of the problems i've faced on my own. But now im lost: How can I check if events are fired? I was looking for something like Assert.Raise or Assert.Fire ...
10
votes
6answers
3k views
Why shouldn't I always use nullable types in C#
I've been searching for some good guidance on this since the concept was introduced in .net 2.0.
Why would I ever want to use non-nullable data types in c#? (A better question is why wouldn't I ...
9
votes
3answers
594 views
How can I use a string argument to case a namespace or type?
I need to get some JSON output in a .NET 2.0 C# script. The goal is to use one method to output all the JSON feeds I need. All the models have the same id and name properties so I have about 15 ...
9
votes
1answer
297 views
How do languages Scala which need covariant return types and “real” class variance run on the CLR?
The CLR does not support covariant return types or full variance (i. e. applied to classes, not only interfaces and delegates), but there are languages targeting the CLR which use one or both of these ...
9
votes
3answers
854 views
static readonly field initializer vs static constructor initialization
Below are 2 different ways to initialize static readonly fields. Is there a difference between the 2 approaches? If yes, when should one be preferred over the other?
class A
{
private static ...
9
votes
7answers
361 views
How do I sort an array of custom classes?
I have a class with 2 strings and 1 double (amount).
class Donator
string name
string comment
double amount
Now I have a Array of Donators filled.
How I can sort by Amount?
9
votes
2answers
2k views
Forwarding events in C#
I'm using a class that forwards events in C#. I was wondering if there's a way of doing
it that requires less code overhead.
Here's an example of what I have so far.
class A
{
public event ...
9
votes
3answers
8k views
End of Stream encountered before parsing was completed?
I am trying to deserialize a stream but I always get this error "End of Stream encountered before parsing was completed"?
Here is the code:
//Some code here
BinaryFormatter b = new ...
8
votes
2answers
73 views
When are generic types determined? Can it be influenced?
I've been playing around with generics and I've been seeing some weird stuff. I hope you guys have an explanation! To make everything easier I've put the "problem" into an example:
namespace Lab
{
...
8
votes
2answers
620 views
Restrict custom attribute so that it can be applied only to Specifc types in C#?
I have a custom attribute which is applied to class properties and the class itself. Now all the classes that must apply my custom attribute are derived from a single base class.
How can I restrict ...
8
votes
4answers
3k views
Detecting registry virtualization
I have a set of C# (v2) apps and I am struggling with registry virtualization in Win7 (and to a lesser extent Vista).
I have a shared registry configuration area that my applications need to access ...
8
votes
3answers
4k views
Anonymous methods and delegates
I try to understand why a BeginInvoke method won't accept an anonymous method.
void bgWorker_ProgressChanged(object sender, ProgressChangedEventArgs e)
{
if (InvokeRequired)
...
8
votes
4answers
16k views
Cast object to decimal? (nullable decimal)
If have this in the setter of a property:
decimal? temp = value as decimal?;
value = "90"
But after the cast, temp is null...
What is the proper way to do this cast?
8
votes
2answers
2k views
How do I get the Localizable property and support in my own design tool?
Overview
In another question, I asked about deploying localizations for some runtime compiled UserControl's. However, before I can get to deploying the localizations, I need a way of localizing the ...
8
votes
5answers
685 views
Are event subscribers called in order of subscription?
Is it safe to assume that event subscribers are called in order of subscription?
Example:
void One(object sender, EventArgs e) {}
void Two(object sender, EventArgs e) {}
event EventHandler foo;
...
8
votes
7answers
21k views
C# Service cannot execute batch file?
I have a service that call a batch file sometime. The batch file take 5-10 seconds to be executed.
The code to launch the batch file is :
System.Diagnostics.Process proc = new ...
7
votes
2answers
159 views
Which of the below Mutex expressions ideally prevents multiple instances of .Net application and what is the difference?
Typically I see these two pieces of code all around. Both works in my case too, but which should I stick to?
Case 1:
bool isNew = false;
Mutex mutex = new Mutex(true, "MyApp_Mutex", out isNew);
if ...
7
votes
3answers
927 views
How to use LogonUser properly to impersonate domain user from workgroup client
ASP.NET: Impersonate against a domain on VMWare
This question is what I am asking, but the answer does not provide details on how the _token is derived. It seems to only use ...
7
votes
5answers
905 views
Restrict multiple instances of an application
Okay, so i've created my c# application, created an installer for it and have it working installed on my machine.
The problem is, when the user opens the application exe twice, there will be two ...
6
votes
2answers
336 views
For C# logging, how to obtain call stack depth with minimal overhead?
I have created a wrapper for log4net (which I may be dropping in favor of NLog, haven't decided yet), and I indent the logged messages result to give an idea of calling structure. For example:
...
6
votes
4answers
201 views
How can I convert List<string> to List<myEnumType>?
I failed to convert List<string> to List<myEnumType>. I don't know why?
string Val = it.Current.Value.ToString(); // works well here
List<myEnumType> ValList = new ...
6
votes
5answers
185 views
string format in C#
I have value ranging from 1 to 10000000.
After value 10000 i need to show values as 1E6,1E7,1E8,....
How to set this in string.Format ?
Thanks to all for replying.
Now i am able to display ...
6
votes
6answers
872 views
Is C# 4.0 backward compatible to C# 2.0?
May I know what is the difference between C# 4.0 and C# 2.0? Is C# 4.0 backward compatible to C# 2.0?
Can I say that C# 4.0 is a superset of C# 2.0 (just like what C++ is to C)?
Thanks.
6
votes
1answer
6k views
Function evaluation disabled because a previous function evaluation timed out
I have an C# application in which I am getting this error :
"Function evaluation disabled because a previous function evaluation timed out. You must continue execution to reenable function ...
6
votes
7answers
989 views
Tray icon does not disappears on killing process
I have a window service for my application. When i stops that by killing process with task manager, tray icon does not disappears. Is it a window bug or something else? Do we have a solution for that ...
6
votes
3answers
284 views
HTML based report being ripped to pieces by pagination
I've created a HTML based report that can be variable lengths and number of segments in C# (which is why Crystal Reports wasn't used) and I can't use the wonderful http://www.printfriendly.com/ as the ...
6
votes
3answers
7k views
How to ignore a certificate error with c# 2.0 WebClient - without the certificate
Using VS2k5 - c#2.0, System.Net.WebClient.UploadData(Uri address, byte[] data) Windows Server 2k3
So here's a stripped down version of the code:
static string SO_method(String fullRequestString)
...
6
votes
3answers
641 views
DateTime string parsing
I have made a generic parser for parsing ascii files.
When I want to parse dates, I use ParseExact function in DateTime object to parse, but I get problems with the year.
The text to parse is i.e. ...
6
votes
5answers
17k views
How to use webbrowser control DocumentCompleted event in C#?
Before starting writing this question, i was trying to solve following
// 1. navigate to page
// 2. wait until page is downloaded
// 3. read and write some data from/to iframe
// 4. submit (post) ...
6
votes
3answers
9k views
Nullable Enum nullable type question
I get the following compilation error with the following source code:
Compilation Error:
Type of conditional expression cannot be determined because there is no implicit conversion between '' and ...
6
votes
3answers
5k views
Embedding a DOS console in a windows form
Is it possible to embed a DOS console in a Windows Form or User Control in C# 2.0?
We have a legacy DOS product that my Windows app has to interact with, and it's been requested that an instance of ...
6
votes
6answers
2k views
Best practice: How to expose a read-only ICollection
I have an ICollection<T> called foos in my class which I want to expose as read-only (see this question). I see that the interface defines a property .IsReadOnly, which seems appropriate... My ...
5
votes
1answer
134 views
Can I run a C# assembly (dll) as 32bit from a 64bit application?
I'm actually doing this with helper executables that are 32bit. But can I do it with DLLs that run on 32bit CodeDOM?
5
votes
2answers
124 views
What's the fast way to get the file name?
myVar = "D:\\mainfolder\\subf1\\subf2\\subf3\\file.txt";
How can I get file.txt conveniently in .NET 2.0 with C#?
What I know is split with \\ and try to get the last member.
Thanks.
5
votes
3answers
165 views
How to get the total number of items on the (logical) desktop (C#)
Let me elaborate. By "items" I mean all the items you see one the desktop (Windows) which includes "My Computer", "Recycle Bin", all the shortcuts etc. If I select all the items on the desktop I get ...
5
votes
6answers
191 views
How can I convert List<byte> to byte[] in C#?
Can I convert via the for Loop?
Is there any better method to do it?
for (int i = 0; i < myListByte.Count ;i++)
{
myArryByte[i] = myListByte[i];
}
5
votes
6answers
280 views
how List<T> does not implement Add(object value)?
I believe it's pretty stupid, and I am a bit embarrassed to ask this kind of question, but I still could not find the answer:
I am looking at the class List<T> , which implemetns IList.
public ...
5
votes
2answers
187 views
What GUI toolkit should I use
I have a C# application. Currently all modules are written in .NET 2 and it uses some executables that have linux ports. So I was wondering what toolkit should I use on Windows and MacOS to compile it ...
5
votes
4answers
373 views
Writing our own Dispose method instead of using Idisposable
After going through a lot of articles of Idisposable i got confused about it usage.
All articles explain what is it and how to implement. I want to understand what we will miss if we don't have it.
It ...
5
votes
4answers
306 views
Method to create and store method chain at runtime
The problem I have is that I need to do about 40+ conversions to convert loosely typed info into strongly typed info stored in db, xml file, etc.
I'm plan to tag each type with a tuple i.e. a ...
5
votes
4answers
1k views
List of new features in C#2.0, 3.0 and 4.0
I worked on the .Net 1.1 project for a long time and I was stuck at C# 1.0 and now I would like to catch up with the latest and greatest.
Google returned lots of informations on new features in C# ...
5
votes
5answers
378 views
C# myths about best practices?
My colleague keeps telling me of the things listed in comments.
I am confused.
Can somebody please demystify these things for me?
class Bar
{
private int _a;
public int A
{
get ...