I'm working on an application that uses a list to handle previous guesses from the user. Below is the (private) list and the property for accessing the list.

To prevent privacy leak i'm using a ReadOnlyCollection, which is also the reason for me only having a getter in the property (elements are added inside the class directly to the list, not through the property).

Now to the problem. The code below generates to error message:

  1. TheNameOfTheClass.PreviousGuesses.get must declare a body because it is not marked abstract or extern. Automatically implemented properties must define both get and set accessors.
  2. Cannot implicity convert type 'System.Collections.Generic.List' to 'System.Collections.ObjectModel.ReadOnlyCollection.

How can this be solved? Thanks in advance!

private List<int> _previousGuesses;

public ReadOnlyCollection<int> PreviousGuesses {
    get {
        return _previousGuesses;
    }
}

EDIT: Ok, so problem nr 2 is solved (thanks Zortkun!). What about the first problem, that I can't use only a getter, any ideas?

link|improve this question

2  
ReadOnlyCollection has a constructor, if I remember correctly, that'll take your List. return new ReadOnlyCollection(_previousGuesses); Try recompiling and see if your other error goes away. – GGulati Feb 11 at 22:49
you need to initialise the collection before attempting to access it from a method call, a Getter is simply a method call. – Lloyd Feb 11 at 23:55
feedback

1 Answer

I guess the favor is not to post the first thing that pops up on google but how about this?

   return _previousGuesses.AsReadOnly();

From here

link|improve this answer
Great, solved that problem! :) – holyredbeard Feb 11 at 22:57
i thought the first problem was related to the 2nd one. @JasonCraig could you elaborate on the 2nd one (if u sill have it / remember) ? – Zortkun Feb 22 at 17:47
I mean the first one. :D – Zortkun Feb 23 at 12:14
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.