| 12345678910111213141516171819202122 | using System;using System.Collections.Generic;using System.Linq;using Foundation;using UIKit;[assembly: Xamarin.Forms.Dependency(typeof(comal.timesheets.iOS.Version_iOS))]namespace comal.timesheets.iOS{    public class Version_iOS : IAppVersion    {        public string GetVersion()        {            return NSBundle.MainBundle.ObjectForInfoDictionary("CFBundleShortVersionString").ToString() + "i";        }        public int GetBuild()        {            return int.Parse(NSBundle.MainBundle.ObjectForInfoDictionary("CFBundleVersion").ToString());        }    }}
 |