0
votes
2answers
477 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 …
3
votes
C# - Detecting if the SHIFT key is held when opening a context menu
JaredPar is correct (i dont have enough rep to just comment)
Control.ModifierKeys
this is a static property of Control class, you should be able to use this.
…
0
votes
Best way to decide which subclass is needed
This is called a Factory Design Pattern. I would create a static method that returns the needed class. A good practice here is to implement an Interface and return the interface.
in …
0
votes
C# ListView - control checkBox event
in this case object sender is ListView and not ListViewItem your code should be this
private void listView1_ItemChecked(object sender, ItemChe …
0
votes
C# accessing properties of an object from a collection class
you need to get the value afterwords. also note that GetValue returns an object, you can then cast it to string or int or whatever type the value you expect is in.
…
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
0
votes
C# How can I get the value of a string property via Reflection?
PropertyInfo propInfo = f.GetType().GetProperty("Bar");
object[] obRetVal = new Object[0];
string bar = propInfo.GetValue(tempObj,obRetVal) as string;
…
0
votes
How to populate/instantiate a C# array with a single value?
this also works...but might be unnecessary
bool[] abValues = new bool[1000];
abValues = abValues.Select( n => n = true ).ToArray<bool>();
…
1
vote
MVVM model design
this is also the reason why you see most people implement INotifyPropertyChanged on their data model, because you want the viewmodel to be notified everytime the data model changes.
…
1
vote
Trouble iterating Generic list with custom object
I think your xxx.GetCarProducts(productCount); may be returning a reference to List<Product> which is less defined than your ProductList class, meaning …
0
votes
Using System.Attribute class
this is exactly how Serialization works so I would say your approach is reasonable. Another way you can approach this is to create a dictionary of PropertyNames and their Titles and then look up th …
0
votes
Is it bad to “think” in LINQ when the skill isn’t transferrable outside C#?
I find that understanding the logic behind it helps me feel better about using LINQ extension methods. If you can write your own Where or Group ..etc extension methods then there is no shame in usi …
1
vote
Reflection in C# — want a list of the data types of a class’ fields
this is how I did it, you want the FieldType which actually returns a Type instance.
var members = typeof(TestMe).GetFields().Select(m => new
…
