Search Results

0
votes
3answers
262 views

Set OpenFolderDialog to a special folder

Hi, I know it is possible to set the current folder of the OpenFolderDialog to a special folder, like "Program Files" or Desktop? But where do I find this? …
0
votes
2answers
195 views

Description for Webservice parameters

Hi, Is it possible to create a description for parameters used in an (asmx)-webservice? I know I can set the description of the webmethod with the Description-property. However is it also p …
3
votes

How to determine the orientation of the screen in C# for mobile devices?

In Microsoft.WindowsMobile.Status there is a class which keeps track of all kinds of properties of your device. Besides the one you need, DisplayRotation, it also contains properties about phone c …
17
votes

How do I overload the square-bracket operator in C#?

Hi, you can find how to do it here. In short it is: public object this[int i] { get {return I …
1
vote

How to avoid dependencies between Enum values in code and corresponding values in a database?

I do not know what the best solution is, I would like to hear that. Our solution is to explicitly type the enum like public enum MyEnum : int { None =0, Value = 1, Anothe …
2
votes

Verify if file exists or not in C#

Hi, You could use: System.IO.File.Exists(@"c:\temp\test.txt"); …
5
votes

Restricting T to string and int?

You could make StatisticItemHits<T> an abstract class and create two subclasses: StatisticItemHitsInt : StatisticItemHits<int>{} Statisti …
0
votes

What is the most efficient (read time) string search method? (C#)

As said before regex is your friend. You might want to look at RegularExpressions.Group. This way you can name part of the matched resultset. …
0
votes

using type returned by Type.GetType() in c#

The solution to your problem is provided by Stefan already. The reason that you can not do IList<customer> is because you can not mix compile time and run-time types this …
0
votes

log4net compact framework 3.5 No app.config to add file appenders

This reaction is a bit late, and probably you have solved it already. However there might be some other users that have the same problem. You can also specify that you want to use a differ …
0
votes

Best way to split an address line into two fields

What I did, but I doubt that it is the most performant solution is to reverse the address and then get the first part till you find a digit and take them all. i.e. the regex .*\d+ on …