- iOS Development with Xamarin Cookbook
- Dimitris Tavlikos
- 195字
- 2021-07-16 11:45:02
Conventions
In this book, you will find a number of styles of text that distinguish between different kinds of information. Here are some examples of these styles, and an explanation of their meaning.
Code words in text, cookbook names, recipe names, scripts, database table names, folder names, filenames, file extensions, and pathnames are shown as follows: "The Register
attribute is used to expose classes to the underlying Objective-C runtime."
A block of code is set as follows:
using System; using System.Collections.Generic; using System.Linq; using MonoTouch.Foundation; using MonoTouch.UIKit;
When we wish to draw your attention to a particular part of a code block, the relevant lines or items are set in bold:
EKEvent newEvent = EKEvent.FromStore(evStore);
newEvent.StartDate = DateTime.Now.AddDays(1);
newEvent.EndDate = DateTime.Now.AddDays(1.1);
newEvent.Title = "Xamarin event!";
Any command-line input or output is written as follows:
cd <code_directory>/CH06_code/WcfService/WcfService ./start_wcfservice.sh
New terms and important words are shown in bold. Words you see on the screen, in menus or dialog boxes, for example, appear in the text like this: "Go to the Library pane and select Objects from the drop-down list."
- ASP.NET Core:Cloud-ready,Enterprise Web Application Development
- JavaScript前端開發模塊化教程
- Building a Home Security System with Raspberry Pi
- Building a RESTful Web Service with Spring
- 深入實踐Spring Boot
- Python網絡爬蟲從入門到實踐(第2版)
- 匯編語言程序設計(第2版)
- TypeScript圖形渲染實戰:基于WebGL的3D架構與實現
- SAS數據統計分析與編程實踐
- Apex Design Patterns
- 軟件架構:Python語言實現
- 持續輕量級Java EE開發:編寫可測試的代碼
- 快速入門與進階:Creo 4·0全實例精講
- Java7程序設計入門經典
- jQuery技術內幕:深入解析jQuery架構設計與實現原理