This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Microsoft Visual Studio Community 2017 (2) | |
Version 15.7.2 | |
VisualStudio.15.Release/15.7.2+27703.2018 | |
Microsoft .NET Framework | |
Version 4.7.02556 | |
Installed Version: Community | |
Visual C++ 2017 00369-60000-00001-AA839 | |
Microsoft Visual C++ 2017 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## Replace var | |
``` | |
//declare a variable which can be reassigned to another value | |
let name = 'my name'; | |
//defines a variable whose value is not reassignable | |
const PI = 3.14; | |
``` | |
## No more stress with complex strings |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using Windows.System.Profile; | |
using Windows.UI.ViewManagement; | |
namespace Wagonli.Tools | |
{ | |
public static class DeviceTypeHelper | |
{ | |
public static DeviceFormFactorType GetDeviceFormFactorType() | |
{ | |
switch (AnalyticsInfo.VersionInfo.DeviceFamily) |