Tutorial by Topics: asi

public static IEnumerable<T> Query<T>(this IDbConnection cnn, string sql, object param = null, SqlTransaction transaction = null, bool buffered = true) public static IEnumerable<dynamic> Query (this IDbConnection cnn, string sql, object param = null, SqlTransaction transaction =...
All control structures, unless otherwise noted, make use of block statements. These are denoted by curly braces {}. This differs from normal statements, which do not require curly braces, but also come with a stiff caveat in that only the line immediately following the previous statement would b...
Visual Basic .NET is the official successor to Microsoft's original Visual Basic programming language. Visual Basic [.NET] appears to have similarities to Python with the lack of semicolons and brackets, but shares with C++ the basic structure of functions. Curly braces are absent in VB .NET, but ...
git rebase [-i | --interactive] [options] [--exec <cmd>] [--onto <newbase>] [<upstream>] [<branch>] git rebase [-i | --interactive] [options] [--exec <cmd>] [--onto <newbase>] --root [<branch>] git rebase --continue | --skip | --abort | --edit-todo ...
Shell aliases are a simple way to create new commands or to wrap existing commands with code of your own. They somewhat overlap with shell functions, which are however more versatile and should therefore often be preferred. The alias will only be available in the shell where the alias command...
Violations of aliasing rules and of violating the effective type of an object are two different things and should not be confounded. Aliasing is the property of two pointers a and b that refer to the same object, that is that a == b. The effective type of a data object is used by C to de...
Visual Basic 14 is the version of Visual Basic that was shipped as part of Visual Studio 2015. This version was rewritten from scratch in about 1.3 million lines of VB. Many features were added to remove common irritations and to make common coding patterns cleaner. The version number of Visual Ba...
A set is a collection of items which can be anything. Whatever operator we need to work on these sets are in short the set operators and the operation is also known as set operation. Basic set operation includes Union, Intersection as well as addition, subtraction, etc. Group-Object Gr...
(do ({var | (var [init-form [step-form]])}*) (end-test-form result-form*) declaration* {tag | statement}*) (do* ({var | (var [init-form [step-form]])}*) (end-test-form result-form*) declaration* {tag | statement}*) (dolist (var list-form [result-form]) declaration* {tag | statement}*) (dotimes ...
The pandas official documentation includes a page on IO Tools with a list of relevant functions to read and write to files, as well as some examples and common parameters.
How to exract tar.gz/bz2/tbz files : If Your File Extension is .tar.gz (or .tgz) use this command tar xvzf file.tar.gz x: This tells tar to extract the files. v: This option will list all of the files one by one in the archive. The “v” stands for “verbose.” z: The z option is ...
This section provides an overview of what vb6 is, and why a developer might want to use it. It should also mention any large subjects within vb6, and link out to the related topics. Since the Documentation for vb6 is new, you may need to create initial versions of those related topics.
One of the main useful features of gnuplot is the possibility of plotting data files. Plotting a data file is really simple with gnuplot, actually, once you have opened the software from the terminal, you only need to digit the command plot 'file' to get an automatic plot. First of all, before plot...
AnnotationDetails@IdMarks field/column as the key of the entity@BasicMarks requested field to mapped as a basic type. This is applicable to primitive types and their wrappers, String, Date and Calendar. The annotation is actually optional if no parameters are given, but good style would dictate to ...
This topic aims to show the basic web driver program in selenium supported languages like C#, Groovy, Java, Perl, PHP, Python and Ruby. Journey includes opening browser driver --> Google Page --> shutdown the browser

Page 1 of 4