0
votes
What is the most flexible serialization for .NET objects, yet simple to implement?
For interoperability we have always used Xml Serialisation and made sure our class was designed from the ground up to do it correctly.
We create an XSD schema document and generate a set of …
2
votes
Use of the Exception class in c#
Where I work we have only a few reasons to catch exceptions. We only do it when...
We can do something about it - e.g We know that this can happen sometimes and we can rectify it …
0
votes
Horrible redraw performance of the DataGridView on one of my two screens.
Well done. In effect you are saying enabling Double Buffering solved a weird multi-display speed issue.
You don't say but was the problem on the Primary or Secondary Screen?
…
2
votes
How can a windows service programmatically restart itself?
It would depend on why you want it to restart itself.
If you are just looking for a way to have the service clean itself out periodically then you could have a timer running in the service …
5
votes
Business logic invading UI in a large winforms app
You need to rearchitect the Business Layer and then wire the UI back into this rearchitectured layer.
You keep the existing UI and hardwired business logic going while this is done and switch …
0
votes
Transactions in .net
It so depends on what you need. For basic SQL transactions you could try doing TSQL transactions by using BEGIN TRANS and COMMIT TRANS in your code. Thats the easiest but it does have complexity …
0
votes
Best practices for merging assemblies?
We don't merge libraries at all. I can't see much advantage in merging libraries together that you can't get but just building them in one assembly in the first place.
I can see the benefit …
1
vote
How2 in Configuration Net 2.0: Add element to section defined in different assembly
You could put the required structure in its own library assembly and link to it when you need it. That way it is defined once and used many times.
…
0
votes
Checking for equivalent shared folders in .net
You can examine the share definition itself by using the System.Management namespace but it is not easy to use.
it starts something like
ManagementClass management = new Man …
0
votes
Developing WPF app - any way to optimize .NET install?
Its big.
Using the MS supplied web install is the best cause it only installs what it needs (but thats still big)
Only option is to only detect its not there and warn …
2
votes
WCF Duplex Service and TCP Port Exhaustion
I think each port is actually a combination of DestinationTCPAddress and Port Number - so you won't run out.
I.e. You can have several subscribers all being talked to on the same source por …
1
vote
How to do hierarchical configuration in .NET’s app.config
I think you'd have to use a custom handler to manage this.
The second part is easy as you can use an configSource Attribute in the original config file to point to a file that contains the …
5
votes
C# “internal” access modifier when doing unit testing
In theory you should only need to test your public methods anyway. Just have enough tests that you are testing all the code paths. In reality you may want to verify something works as expected be …
0
votes
Windows event scheduler custom service
Oh there are so many.
I'd start with a standard windows service in .Net and use the Properties\Settings feature to store my scheduled time (this really only works with a single time - a mor …
0
votes
How to make an existing public API testable for external programmers using it?
Third party users should not be testing your API. They would want to test their code against your API and so they need to create Mocks of the API etc. but they would be relying on your testing of …
