I created a brand new, vanilla c# Windows 8 Store app. In the App() function, I put a line of code to gather the Command line arguments. The IDE complains that GetCommandLineArgs() is not part of Environment.
public App()
{
this.InitializeComponent();
this.Suspending += OnSuspending;
String[] arguments = Environment.GetCommandLineArgs();
}
This page on Microsoft's site seems to indicate that this is supported in .NET 4.5. What gives?
(I could technically gather the args as an App() parameter, but I'd prefer not to. Other lines of code also call this, and I'd prefer to leave them "as is". Moreover, I'm just curious why this isn't working, seems like it should.

