Skip to content

PCL not well supported #2

Description

@hugoterelle

When using Portable Class library (PCL), some features are not available On line 747, you have

 currentlySubscribed.ForEach(sub => currentSubscriptions.Remove(sub)); 

Which does not exists in PCL.

You have to use:

 foreach (var sub in currentlySubscribed) currentSubscriptions.Remove(sub);

Greetings,
Hugo

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions