Search results for query: *

  1. J

    working with classes, methods, and sorting

    Hi, I didn't ignore what you said. I was trying to implement piecemeal what you said. I wanted to first try to understand the comparison before getting to the sorting. Since I'm not understanding the comparison, I don't think I'll get the sorting at the moment.
  2. J

    working with classes, methods, and sorting

    Thank you for replying, that's very helpful. Just to start on things, I got the comparison to work this way: Person person1 = new Person(); Person person2 = new Person(); person1.GivenName = "John"; person1.FamilyName = "Jones"; person2.GivenName =...
  3. J

    working with classes, methods, and sorting

    Hi everyone, I'm trying to help out a friend on some C# and I'm stumped here. The issue is to show the proper sort for a series of classes representing a warehouse order. I found out the right order in Excel, but we need to show it program-wise. The skeleton program is: using System; using...
Back
Top Bottom