Search results for query: *

  1. W

    Question Issues with sorting a Generic Collection

    In further proof that there are no stupid questions, only stupid programmers, you are of course correct, and I totally missed it after staring at it for the better part of a day (want to buy a second pair of eyes!) Interestingly enough, I did manager to find where the original developer managed...
  2. W

    Question Issues with sorting a Generic Collection

    We use a custom collection derived from CollectionBase to store our Business objects Public Class BECollection(Of t As AbstractEntity) Inherits CollectionBase AbstractEntity is the class all our Business entity classes originate from. Things are looking good, except for some issues we are...
  3. W

    Serialization Question

    Appriciate the responses. I had assumed I would indeed need to use Reflection, but wanted to see if I missed some more appealing way to do it. I will see about wrapping the data, however, as to which approach will work the best for us. Thanks!
  4. W

    Serialization Question

    Running into an issue with some functionality I'm trying to develop. Client uses a series of Business objects (entities like Order, Customer, etc) that all inherit from the MustInherit class called AbstractEntity. There is a desire to add some logging/audit functionality to this class, so...
Back
Top