Esempio n. 1
0
 internal static string GetVersion(this NSBundle bundle)
 {
     return(bundle.StringForInfoDictionary(Main.DictionaryKey.CFBundleShortVersionString));
 }
Esempio n. 2
0
 internal static string GetBuild(this NSBundle bundle)
 {
     return(bundle.StringForInfoDictionary(Main.DictionaryKey.CFBundleVersion));
 }
Esempio n. 3
0
 internal static string GetName(this NSBundle bundle)
 {
     return(bundle.StringForInfoDictionary(Main.DictionaryKey.CFBundleName));
 }