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