﻿var thisBundle = NSBundle.MainBundle;
var commonDictionaryPath = thisBundle.PathForResource ("CommonDictionary", "plist");
if (commonDictionaryPath != null){
	using (var dict = new NSDictionary (commonDictionaryPath)){
		// use dictionary
	}
}