Tagged Questions

22
votes
3answers
8k views

C# - how enumerate all classes with custom class attribute?

Question based on MSDN example: http://msdn.microsoft.com/en-us/library/aa288454(VS.71).aspx Let's say we have some C# classes with HelpAttribute in standalone desktop application. Is it possible to ...
3
votes
2answers
113 views

How would one List the Databases in a SQL Server, not by query, but by c# call?

From this: Enumerate all running databases One can list the servers on the network, but once one selects one of those servers, how does one then list the DB's in that server, by using a similar ...
2
votes
2answers
129 views

How can I enumerate an infinite sequence of integers in C# 4.0?

Is there a function in C# that returns an IEnumerator of the infinite sequence of integers [0, 1, 2, 3, 4, 5 ...]? I'm currently doing Enumerable.Range (0, 1000000000).Select (x => x * ...
1
vote
1answer
110 views

Code sample for: Update<T>(sourceObject, targetObject, string[] exceptions)

I want a generic update method which copies all properties of sourceObject to targetObject but not methods mentioned in exceptions.
1
vote
3answers
370 views

Enumerate Dictionary Within ASP.NET Web Page

I have a ASP.NET (C#) web page in which I want to enumerate a dictionary in a code render block: <% foreach (Dictionary<string, string> record in parsedData) { %> <div>...Some ...
0
votes
1answer
18 views

enumerating apache direcory versions using .net

Am trying to enumerate the file system, checking for apache versions installed in wamp. since the apache folder usually have the version numbers in the name something like. My goal is first to look ...
0
votes
2answers
497 views

C# How to determine if hwnd is in tray icons

I am trying to get the hwnd of the current tray icons. what I did is getting the hWnd of system trat window by using this code: [DllImport("user32.dll", SetLastError = true)] static extern IntPtr ...
0
votes
1answer
121 views

C# class scanning

In Java there are methods to go about scanning the classpath/all classes/within a package and enumerating the classes therein. e.g. spring component scanning uses something like this to scan all ...