Specifically, Array.AsReadOnly and List.AsReadOnly are not available in .NET for Windows Store Apps
Comments: Fixed in ff09a23b817e Good As new... (Remove use of .AsReadOnly) The Array.AsReadOnly and List.AsReadOnly methods are not available in .NET for Windows Store Apps. However, these methods are just wrappers around the ReadOnlyCollection constructor. So this change is an "inline method" refactoring to use the constructor directly.
Comments: Fixed in ff09a23b817e Good As new... (Remove use of .AsReadOnly) The Array.AsReadOnly and List.AsReadOnly methods are not available in .NET for Windows Store Apps. However, these methods are just wrappers around the ReadOnlyCollection constructor. So this change is an "inline method" refactoring to use the constructor directly.