A complete list can be found at: https://api.github.com/emojis
Last Updated: 2018-07-09
:bowtie: |
😄 :smile: |
😆 :laughing: |
|---|---|---|
😊 :blush: |
😃 :smiley: |
:relaxed: |
😏 :smirk: |
😍 :heart_eyes: |
😘 :kissing_heart: |
A complete list can be found at: https://api.github.com/emojis
Last Updated: 2018-07-09
:bowtie: |
😄 :smile: |
😆 :laughing: |
|---|---|---|
😊 :blush: |
😃 :smiley: |
:relaxed: |
😏 :smirk: |
😍 :heart_eyes: |
😘 :kissing_heart: |
| // 2006 - DS | |
| // | |
| // string Mid(int, int, string); | |
| // int InStr(int, string, string); | |
| // string Left(string, int); | |
| // string Right(string, int); | |
| string Mid( int posStart, int intLen, string strSearch ) | |
| { | |
| return strSearch.substr(posStart, intLen); |
| // 2006 - DS | |
| #include "windows.h" | |
| #include "stdio.h" | |
| char *Mid(char *str, int start, int length); | |
| char *Left(char *str, int length); | |
| char *Right(char *str, int length); | |
| int Asc(char *str); | |
| char Chr(int value); |
| <!-- | |
| Based on the article: | |
| * https://docs.microsoft.com/en-us/xamarin/xamarin-forms/app-fundamentals/gestures/pinch | |
| * https://github.com/xamarin/xamarin-forms-samples/tree/master/WorkingWithGestures/PinchGesture | |
| --> | |
| <StackLayout> | |
| <Label Text="Xamarin Forms- Pinch Gesture in Android and UWP" | |
| VerticalOptions="Center" HorizontalOptions="Center" | |
| FontSize="Large" | |
| TranslationX="0" TranslationY="50" /> |
| using System; | |
| using System.IO; | |
| using System.Runtime.InteropServices; | |
| using System.Text.RegularExpressions; | |
| using System.Text; | |
| using System.Xml; | |
| using Mono.Unix; | |
| using Tomboy; | |
| public class InsertBugAction : SplitterAction |
| using log4net; | |
| namespace XenoInc.Gist | |
| { | |
| private static readonly ILog Log = LogManager.GetLogger(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType); | |
| [STAThread] | |
| private static void Main() | |
| { | |
| // Initialize log4net. | |
| log4net.Config.XmlConfigurator.Configure(); |
| namespace XenoInc.Gist | |
| { | |
| public static class Test | |
| { | |
| /// <summary> | |
| /// Execute on UI thread asynchronously (don't wait for completion) | |
| /// </summary> | |
| /// <param name="control"></param> | |
| /// <param name="code"></param> | |
| /// <example> |
| public static void Main() | |
| { | |
| DoubleLinkedList list = new DoubleLinkedList(); | |
| list.Insert("1"); | |
| list.Insert("2"); | |
| list.Insert("3"); | |
| DoubleLink link4 = list.Insert("4"); | |
| list.Insert("5"); | |
| Console.WriteLine("List: " + list); |
| /// ---------------------------------------------------------------------------- | |
| /// <summary>Convert from String^ to std::string</summary> | |
| System::Void TestClass::MarshalString(String ^ strIn, string& strOut) | |
| { | |
| using namespace Runtime::InteropServices; | |
| const char* chars = (const char*)(Marshal::StringToHGlobalAnsi(strIn)).ToPointer(); | |
| strOut = chars; | |
| Marshal::FreeHGlobal(IntPtr((void*)chars)); | |
| } | |
| using System.Diagnostics; | |
| // ... | |
| Stopwatch sw = new Stopwatch(); | |
| sw.Start(); | |
| // ... | |
| sw.Stop(); | |
| Console.WriteLine("Elapsed={0}", sw.Elapsed); |