Tutorial by Topics: di

if cond; body; end if cond; body; else; body; end if cond; body; elseif cond; body; else; end if cond; body; elseif cond; body; end cond ? iftrue : iffalse cond && iftrue cond || iffalse ifelse(cond, iftrue, iffalse) All conditional operators and functions involve using boole...
commonly used Public MethodUseSetTitle(String)Sets Title for the dialogSetIcon(Drawable)Set Icon for the alert dialogSetMessage(string)Set the message to display.SetNegativeButton(String, EventHandler)Set a listener to be invoked when the negative button of the dialog is pressed.SetPositiveButton(...
# Package a build directory pack [PATH] # Use a specific generator cpack -G [GENERATOR] [PATH] # Provide optional overrides cpack -G [GENERATOR] -C [CONFIGURATION] -P [PACKAGE NAME] -R [PACKAGE VERSION] -B [PACKAGE DIRECTORY] --vendor [PACKAGE VENDOR] CPack is an external tool allowing...
Non-Access Modifiers do not change the accessibility of variables and methods, but they do provide them special properties.
ParametersDetailsmodel.android.ndk.toolchainnative toolchain found in the ndk-bundle folder
Varargs, as they are commonly known, allow functions to take an arbitrary number of arguments without specification. All arguments given to such a function are packaged into a single structure known as the vararg list; which is written as ... in Lua. There are basic methods for extracting the number...
func (enc *base64.Encoding) Encode(dst, src []byte) func (enc *base64.Encoding) Decode(dst, src []byte) (n int, err error) func (enc *base64.Encoding) EncodeToString(src []byte) string func (enc *base64.Encoding) DecodeString(s string) ([]byte, error) The encoding/base64 package contains...
XAML is used in Silverlight, Windows Phone, Windows RT and UWP apps. Sharing code or converting code between these is sometimes harder than desirable due to subtle differences between the various XAML dialects. This topic strives to give an overview of these differences with a short explanation. ...
An example of how to use dependency injection in .net without using a container. Based on examples by Mark Seemann http://blog.ploeh.dk/
Matplotlib has four distinct coordinate systems which can be leveraged to ease the positioning of different object, e.g., text. Each system has a corresponding transformation object which transform coordinates from that system to the so called display coordinate system. Data coordinate system is ...
By default, C compilers lay out structures so that each member can be accessed fast, without incurring penalties for 'unaligned access, a problem with RISC machines such as the DEC Alpha, and some ARM CPUs. Depending on the CPU architecture and the compiler, a structure may occupy more space in mem...
Related topics: Grand Central Dispatch Concurrency
Grand Central Dispatch (GCD) is Apple's answer to multithreading. It is a lightweight framework for performing tasks synchronously or asynchronously in queues and handles CPU threads for you behind the scenes. Related Topic: Concurrency
AttributeDetailsauth(String) Specify whether the web Application code signs on to the corresponding resource manager programmatically, or whether the Container will sign on to the resource manager on behalf of the application. The value of this attribute must be Application or Container. This attri...
If models are correctly related you can easily load related data using EntityFramework. You have three options to chose from: lazy loading, eager loading and explicit loading. Models used in examples: public class Company { public int Id { get; set; } public string FullName { get; set...

Page 13 of 32