Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8244895
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 7, 20262026-06-07T22:00:38+00:00 2026-06-07T22:00:38+00:00

This question may be look like this , but the implementation is different. i

  • 0

This question may be look like this, but the implementation is different. i am using that example only for my new implementation

I have following ObservableCollection in my class, I am binding data to my listbox using that Collection in my Windows phone 7 application

public ObservableCollection<CustomClass> myList = new ObservableCollection<CustomClass>();

I tried the following way but sorting not happening properly

My Class

public class CustomClass : IComparable<CustomClass>
{
 public string Id { get; set; }        
 public string Name { get; set; }        
 public string CreatedDate get{ get; set; }

 public int CompareTo(CustomClass  other)
    {
        var compareDate1 = DateTime.Parse(CreatedDate);
        var compareDate2 = DateTime.Parse(other.CreatedDate);
        return compareDate2.CompareTo(compareDate1);

    }
 }

SUB Class

public class ComparingObservableCollection<T> : ObservableCollection<T>
 where T : IComparable<T>
{

protected override void InsertItem(int index, T item)
{
    if (!Items.Contains<T>(item))
        {
            try
            {
                var bigger = Items.First<T>(F => F.CompareTo(item) > 0);
                index = Items.IndexOf(bigger);
            }
            catch
            {
                index = Items.Count;
            }
            finally
            {
                base.InsertItem(index, item);
            }
        }
  }
}

Problem is not with logic, it is with input dates, i am querying next 15days createddates without checking the year
below code is working but need to handle the days of dec/jan months

UPDATE
My Custom Class

public class CustomClass : IComparable<CustomClass>
{
public string Id { get; set; }
public string Name { get; set; }
public DateTime Created { get; set; }

private string _CreatedDate;
public string CreatedDate
{
    private get
    {
        return _CreatedDate;
    }
    set
    {
        Created = DateTime.Parse(value);
        _CreatedDate = value;
    }
}

public CustomClass(string id, string name, string created)
{
    Id = id;
    Name = name;
    CreatedDate = created;
}

public int CompareTo(CustomClass other)
{
    return CreateDate.Date.DayOfYear.CompareTo(other.CreateDate.Date.DayOfYear);
}
}
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-07T22:00:40+00:00Added an answer on June 7, 2026 at 10:00 pm

    if you want to have this class sorted by itself (CreatedDate)

    public class CustomClass : IComparable<CustomClass>
    {
        public string Id { get; set; }
        public string Name { get; set; }
        public DateTime Created { get; set; }
    
        private string _CreatedDate;
        public string CreatedDate
        {
            private get
            {
                return _CreatedDate;
            }
            set
            {
                Created = DateTime.Parse(value);
                _CreatedDate = value;
            }
        }
    
        public CustomClass(string id, string name, string created)
        {
            Id = id;
            Name = name;
            CreatedDate = created;
        }
    
        public int CompareTo(CustomClass other)
        {
            return Created.CompareTo(other.Created);
        }
    }
    
    public class ComparingObservableCollection<T> :  ObservableCollection<T> where T : IComparable<T>
    {
        // this function presumes that list is allways sorted and index is not used at all
        protected override void InsertItem(int index, T item)
        {
            if (!Items.Contains<T>(item))
            {
                try
                {
                    var bigger = Items.First<T>(F => F.CompareTo(item) > 0);
                    index = Items.IndexOf(bigger);
                }
                catch 
                {
                    index = Items.Count;
                }
                finally
                {
                    base.InsertItem(index, item);
                }
            }
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

This question may seem a little bit stackoverflow-implementation specific, but I have seen a
This may look like the recent question that asked why Perl doesn't allow one-liners
This may look like an easy question for some of you, but I'm not
Ok, this may look like a previous asked question, but I already googled this
I know this question was asked for many times, and it may look like
This question may have been asked before, but I had trouble finding an answer,
This question may not directly relate to programming. I have noticed that the technology
This question may look like a duplicate of: How to uninstall postgresql on my
This question may look familliar but I've discovered some rather more pertinent information and
Since this is WPF, it may look like lots of code, but don't be

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.