This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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) |
OlderNewer