0
votes
2answers
450 views
.NET Xslt Transformation, is this really streamed?
Hi. I have an XML that I need remove empty elements from, I am trying to avoid using DOM and trying to do this as streams. I have this code, but I am not entirely sure how correct and optimized thi …
0
votes
Can I make XmlSerializer ignore the namespace on deserialization?
be careful, if you overwrite NamespaceURI
it not only affects all of the elements but attributes as well. Sometimes that causes deserializer to ignore attributes which will set them al …
0
votes
Reflectively Executing Code in .Net
you first need to create and compile a class with your code in it in memory, after it has been compiled you need to reflect against it and invoke the method in which your dynamic code lives, method …
0
votes
Where are the Properties.Default.Settings stored?
it is saved in your Documents and Settings\%user%\Local Settings\Application Data......etc search for a file called user.config there
the location may change however.
…
1
vote
4
votes
What’s the best .Net technical thing you’ve learned over the past 3 years?
Recently XAML, not so recently Lambda, and back in the day Generics. I am in love with XAML for some reason.
But to answer your question directly, the one thing I learned 3 years ago that h …
0
votes
How can I convert to a specific type in a generic version of TryParse()?
ToType being the generic parameter here. This works for nullable types, just in case you needed it. You can extract your main method to be a generic converter, that will convert to any type, inclu …
1
vote
How do I use C# Generics for this implementation when the Generic Decision is based on a DB Value
I think it is totally acceptable to have a simple Factory Design Pattern. Of course you can go really crazy and have a Dictionary of Enum representing you content type as key and the actual Type as …
6
votes
How do I determine which monitor my .NET Windows Forms program is running on?
You can get an array of Screens that you have using this code.
Screen[] screens = Screen.AllScreens;
You can also figure out which screen you are on, by running th …
0
votes
Finding out if a type implements a generic interface
If i understand your question correctly, this is what you are trying to do. If not, please explain further.
public class MyType : ISomeInterface
{
}
MyType o = new MyType();
if(o …
1
vote
Implementing a custom sort for WinForms ListView
you need to give it an actual instance of your Picture class, not the type. Also, your ListViewItemSorter will actually call the Comparer by passing it the ListViewItem not the Picture class, you …
1
vote
MS Access Query Designer - similar functionality using standard .NET 3.5 controls?
Anything is possible if you try hard enough.
I would explore WPF, it will provide capabilities to custom build your own controls and will get rid of that tedious work of keeping the UI upd …
2
votes
What is the most under-valued part of .NET?
Closures with LAMBDA expressions, saves a lot of headache...but can be just as evil if used in the wrong hands.
…
1
vote
MethodInvoker vs Action for Control.BeginInvoke
Also per MSDN:
MethodInvoker provides a simple delegate that is used to invoke a method with a void parameter list. This delegate can be used when making calls to a control …
0
votes
Easiest way to make a single statement async in C#?
you can use a ThreadPool.
ThreadPool.QueueUserWorkItem( o => Thread.Sleep(1000) /*your long task*/ );
…
