Esempio n. 1
0
        private void BuildVersion()
        {
            var version = UIDevice.CurrentDevice.SystemVersion;
            var parts   = version.Split('.').Select(int.Parse).ToArray();

            Version = new MvxTouchVersion(parts);
        }
 private void BuildVersion()
 {
     var version = UIDevice.CurrentDevice.SystemVersion;
     var parts = version.Split('.').Select(int.Parse).ToArray();
     Version = new MvxTouchVersion(parts);
 }