0
votes
break whenever a file (or class) is entered
Files have no existence at runtime (consider that partial classes are no different -- in terms of code -- from putting everything in a single file). Therefore a macro approach (or code in every met …
0
votes
Transforming flat file to XML using XSLT-like technology
IIRC someone has created a "LINQ to CSV" library that might be a starting point to create the intermediate XML (in memory) as input into the transform.
Found it …
2
votes
How do i exit a List<string>.ForEach loop using when using an anonymous delgate?
There is no loop that one has access to, from which to break. And each call to the (anonymous) delegate is a new function call so local variables will not help. But since C# gives you a closure, yo …
0
votes
How to quickly and easily embed fonts in winforms app in C#
Can't I just use the resource part of my app?
Yes, but need to be native resources rather than .NET resources (i.e. using rc.exe, the native resource compiler). …
1
vote
Windows Workflow Foundation example - moderation
serialise itself somewhere so it doesn't loose state
WF has inbuilt support for this (using SQL Server, but you can plugin a different backend).
Any dec …
0
votes
Which versions of .NET Framework I can count on?
Pre-Vista: there is a significant chance that .NET will not be installed. And event if it is it may be 1.0 or 1.1.
Vista includes .NET 3.0 in RTM, but it is an optional component i …
0
votes
Would a conditional de-reference operator be a good thing in C#?
I suspect a combination of NUllable and extension methods would allow a significant portion of this to b achieved.
This would limit T to value types of course.
(TBH I would rather s …
0
votes
Transferring Print Jobs Between Printers
If nothing exists in the Win32 API, then there will be nothing in .NET.
Unless the printer drivers are identical then you may have problems because the printer jobs go through some …
0
votes
Best way of protect a backing field from mistaken use in C#
Automatic properties:
public int PropertyName { get; set; }
will prevent access to the backing field. But if you want to put code in there (e.g. for lazy loading o …
2
votes
Creating an XML Element object from an XML Writer in C#
You do not need an intermediate string, you can create an XmlWriter that writes directly into an XmlNode:
XmlDocument doc = new XmlDocument();
XmlWriter xw = doc.CreateNavigator().A …
0
votes
Is thread-local storage persisted between backgroundworker invocations?
Would need to check the source (or via Reflector) to determine this if it is not specified in MSDN.
If it isn't specified you can't rely on the current behaviour not changing in a future ve …
1
vote
FileInfo[] array, want to add it to a queue so each file is processes only once and removed
With a Queue pop the items from the queue as you process them.
while (queue.Count > 0) {
T item = queue.Dequeue()
ProcessItem(item)
}
Also queue implements …
4
votes
Queue ordering
Use LINQ to Objects...
var q = new Queue<T>(array.OrderBy(d => d.date));
EDIT: Ops, wrong way around.
…
0
votes
Listing ODBC Data Sources in C#
I don't think there is anything in .NET, and a quick check of the (native) ODBC API shows some functions that might be of help:
SQLBrowseConnec
SQLDrivers
Give …
2
votes
Finding out Windows service’s running process name .NET 1.1
WMI has this information: the Win32_Service class.
A WQL query like
SELECT ProcessId FROM Win32_Service WHERE Name='MyServiceName'
using System.Management …
