The following operators are available.
| Operator | Description |
|---|---|
| + | Adds two operands |
| # install openjdk | |
| sudo apt-get install openjdk-7-jdk | |
| # download android sdk | |
| wget http://dl.google.com/android/android-sdk_r24.2-linux.tgz | |
| tar -xvf android-sdk_r24.2-linux.tgz | |
| cd android-sdk-linux/tools | |
| # install all sdk packages |
| import android.app.Activity; | |
| import android.content.Context; | |
| import android.preference.Preference; | |
| import android.util.AttributeSet; | |
| import android.view.View; | |
| import android.view.ViewGroup; | |
| import android.widget.LinearLayout; | |
| import com.google.ads.AdRequest; | |
| import com.google.ads.AdSize; |
| using System; | |
| using Castle.MicroKernel.Registration; | |
| using Castle.Windsor; | |
| namespace CollectionResolverForGenericInterface | |
| { | |
| internal class Program | |
| { | |
| private static void Main(string[] args) | |
| { |
| using System.Collections.Generic; | |
| using System.IO; | |
| using OfficeOpenXml; // (EPPLus - http://epplus.codeplex.com/) | |
| namespace OfficeReports | |
| { | |
| public static class DumpToExcel | |
| { | |
| public static void Dump<T>(IEnumerable<T> data, string outputFilename) | |
| { |
| class MyPrimitiveSynchronisationContext : SynchronizationContext | |
| { | |
| private readonly Queue<Action> messagesToProcess = new Queue<Action>(); | |
| private readonly object syncHandle = new object(); | |
| private bool isRunning = true; | |
| public override void Send(SendOrPostCallback codeToRun, object state) | |
| { | |
| throw new NotImplementedException(); | |
| } |