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 …
0
votes
Database Choice for a C# 2008 front end
I'd have a look at Sql Server Workgroup Edition
http://www.microsoft.com/sql/editions/workgroup/
Expres …
0
votes
Is it correct to use inheritance instead of name aliasing in c#?
This is one of those 'It depends' questions.
If what you need is a new class that behaves as a List of Customers in addition to your other requirements then the inheritance is the way.
…
2
votes
ShowDialog() from keyboard hook event in c#
The problem may be that you are trying to put UI in a non-ui thread.
Make your event fire from another thread and invoke the method that runs ShowDialog() from your UI thread.
Essen …
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
C# Event Handlers
I think you can if you are in the class that raises the event.
You can define the handler and enumerate each.
e.g. If your event is defined as
event System.EventHa …
0
votes
Best way to view a table with *lots* of columns?
If you are just after a verification could you not check each field programatically and report that entire row is ok!. Then you need a much simple data grid which lists the rows that are not so go …
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 …
0
votes
C# callback from DLL
Pass in the callback object in the call A make to B. Use an interface (or tightly bound libraries). Make sure the callback object is thread aware and thread safe.
…
2
votes
WCF: Best practice to send Form Data to a Web Service?
We use WCF to define our Data Contracts and Data Methods using attributes.
Basically we create an assembly to define all our classes and another assembly to provide the WCF connective bits …
0
votes
Turn off calling tabPage_Enter method in C#
Wrap the code in the event within a check so it only processes when you want it to.
If you can write code to switch it off then you could write code to set a state that prevented the code i …
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 …
5
votes
Populate TreeView from DataBase
Not quite.
Trees are usually handled best by not loading everything you can at once. So you need to get the root node (or topic) which has no parentIDs. Then add them to the trees root no …
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 …
1
vote
Unique ‘code’ for each application deployment
If you use an MSI to install the application you could edit each MSI to include the special code and write it to the regsitry as part of the install.
You can use ORCA to edit MSI's manually …
