Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~426 People Reached
Favorite Forums
Member Avatar for chtoph

class Person:IComparer<Person> { int age; public Person(int age) { this.age = age; } public int Age { get { return age; } } public int CompareTo(Person p) { return 1; } } ArrayList al = new ArrayList(); al.Add(new Person(9)); al.Sort(); it throws an error: failed to compare 2 elements in …

Member Avatar for Jugortha
0
89
Member Avatar for Barbarrosa

Hello, I am new to C#. What i am trying to do is this: I am taking a screenshot of my desktop (which i have done and stored in a file). Now all I need is to be able to define the parts of the image which I wish to …

Member Avatar for Ramy Mahrous
0
337