Tutorial by Topics: name

The nameof operator allows you to get the name of a variable, type or member in string form without hard-coding it as a literal. The operation is evaluated at compile-time, which means that you can rename a referenced identifier, using an IDE's rename feature, and the name string will update with i...
Used to prevent name collisions when using multiple libraries, a namespace is a declarative prefix for functions, classes, types, etc. namespace identifier(opt) { declaration-seq } inline namespace identifier(opt) { declaration-seq } /* since C++11 */ inline(opt) namespace attribute-specifie...
Build a named capture group (X being the pattern you want to capture): (?'name'X) (?X) (?PX) Reference a named capture group: ${name} \{name} g\{name} Python and Java don't allow multiple groups to use the same name.
uname - to print information about your operating system. uname [OPTION]
From the PHP documentation: What are namespaces? In the broadest definition namespaces are a way of encapsulating items. This can be seen as an abstract concept in many places. For example, in any operating system directories serve to group related files, and act as a namespace for the files wi...
This section provides an overview of what codenameone is, and why a developer might want to use it. It should also mention any large subjects within codenameone, and link out to the related topics. Since the Documentation for codenameone is new, you may need to create initial versions of those r...
The __name__ special variable is used to check whether a file has been imported as a module or not, and to identify a function, class, module object by their __name__ attribute. The Python special variable __name__ is set to the name of the containing module. At the top level (such as in the i...
Element and attribute names in XML are called QNames (qualified names). A QName is made of: a namespace (a URI) a prefix (an NCName, NC because it contains no colon) a local name (an NCName) Only the namespace and the local name are relevant for comparing two QNames. The prefix is only a ...
XPath 1.0 doesn't have the concept of a default namespace. Also, the namespace prefixes defined in the original XML document do not affect XPath - namespace prefixes have to be explicitly registered with the XPath provider, otherwise prefixes can't be used at all in the XPath expression.
Inside a specific node: {path-to-parent}/name()='search string'] Anywhere in the document: //*[name()='search string'] functionreturn valuelocal-name()the node's name without prefix local-name() result does not include prefix (lookup name() XPATH function for it)
paramdescriptionmodemode to open file, default=w+bdeleteTo delete file on closure, default=Truesuffixfilename suffix, default=''prefixfilename prefix, default='tmp'dirdirname to place tempfile, default=Nonebuffsizedefault=-1, (operating system default used)
Named Arguments Ref: MSDN Named arguments enable you to specify an argument for a particular parameter by associating the argument with the parameter’s name rather than with the parameter’s position in the parameter list. As said by MSDN, A named argument , Enables you to pass the argument t...
file dirname filepath file tail filepath file rootname filepath file extension filepath file join path1 path2 ... file normalize path file nativename path

Page 1 of 2