3
votes
Do access modifiers affect reflection also?
Yes you can access private fields via reflection. This is how a lot of ORMs go about populating an object without going through your properties (which will invoke business logic you might not have …
1
vote
Web Based Code-Review tools for Team Foundation Server
This isn't really web based (unless you use the TFS web frontend) but this tool looks like it might fit your needs: TeamReview
…
6
votes
Is it possible to exclude some members of a type from XmlSerializer serialization?
You are looking for XmlIgnore
…
