Unity.Platform.IPhone.IPhoneI18N.loadResourcesLiteral C# (CSharp) 메소드

loadResourcesLiteral() 개인적인 메소드

private loadResourcesLiteral ( string fullPathFilePlist ) : NSDictionary
fullPathFilePlist string
리턴 NSDictionary
		private NSDictionary loadResourcesLiteral (string fullPathFilePlist)
		{
			NSDictionary resourcesLiteral = null;
			SystemLogger.Log(SystemLogger.Module.PLATFORM, "# loading plist: " + fullPathFilePlist);
			if (this.FileExists (fullPathFilePlist)) {
				resourcesLiteral = NSDictionary.FromFile (fullPathFilePlist);
			}
			return resourcesLiteral;
		}