This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using Newtonsoft.Json; | |
namespace Test1 | |
{ | |
class MainClass | |
{ | |
public static void Main(string[] args) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public abstract class TypedValueConverter<TObject, TTarget> : IValueConverter | |
{ | |
public Type targetType { get; set; } | |
public object parameterConvert { get; set; } | |
public object parameterConvertBack { get; set; } | |
public CultureInfo cultureInfo { get; set; } | |
public object Convert(object value, Type targetType, object parameter, CultureInfo cultureInfo) | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* Write a function to read digits in the string. and then report the frecuency of each digit. | |
* Then show digits sorted by frecuency, and their frecuency. | |
* */ | |
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
namespace FuturisTech | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections.Generic; | |
using System.Threading; | |
using System.Threading.Tasks; | |
using System.Linq; | |
namespace TestConsole | |
{ | |
class Program | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
public class Program | |
{ | |
public static void Main() | |
{ | |
Console.WriteLine("Hello World"); | |
string ipString = "192.168. 1.1"; | |
Console.WriteLine("isValidIPV4 "+ipString+":"+isValidIPV4(ipString)); | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections; | |
using System.Collections.Generic; | |
using System.Collections.ObjectModel; | |
using System.Collections.Specialized; | |
using System.ComponentModel; | |
using System.Diagnostics; | |
using System.Reflection; | |
using System.Runtime.Serialization; | |
using System.Threading; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Runtime.InteropServices; | |
using MonoTouch.ObjCRuntime; | |
using MonoTouch.Foundation; | |
namespace XamarinSwizzle | |
{ | |
[Register("TestClass")] | |
public class TestCode : NSObject | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
namespace TestWize | |
{ | |
class MainClass | |
{ | |
public static void Main(string[] args) | |
{ | |
Console.WriteLine("Hello World!"); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
set fbUrl to "https://www.facebook.com/messages/" | |
set return to "https://www.facebook.com/messages/" | |
--Key codes | |
--http://apple.stackexchange.com/questions/36943/how-do-i-automate-a-key-press-in-applescript | |
--http://softwares.bajram.com/softwares/#Full_Key_Codes | |
--Voy en la fila 30 del excel | |
--androidverde falta | |
--después de como 60 me marco facebook que necesito validar que no soy un robot | |
--me quede en yaquelin weber | |
--despues de 30 marco eso. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// This file has been autogenerated from parsing an Objective-C header file added in Xcode. | |
using System; | |
using MonoTouch.Foundation; | |
using MonoTouch.UIKit; | |
using System.Collections.Generic; | |
using MonoTouchPlus; | |
using System.Drawing; |
NewerOlder