Setup:
var ci = new CultureInfo(1)
Question(s):
Yes, basically some members are available on some platforms but not others. Look at the version information for CultureInfo(int)
constructor vs CultureInfo.DateTimeFormat
in the Version Information section, as an example.
Constructor Version Information:
.NET Framework
Available since 1.1
DateTimeFormat Version Information:
Universal Windows Platform
Available since 4.5
.NET Framework
Available since 1.1
Portable Class Library
Supported in: portable .NET platforms
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.0
Windows Phone
Available since 8.1
Note the lack of mention of UWP on the constructor docs...
See more on this question at Stackoverflow