Run Code
|
API
|
Code Wall
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
Pets Name Generator
//Rextester.Program.Main is the entry point for your code. Don't change it. //Compiler version 4.0.30319.17929 for Microsoft (R) .NET Framework 4.5 using System; using System.Collections.Generic; using System.Linq; using System.Text.RegularExpressions; namespace Rextester { public class Program { public static void Main(string[] args) { String[] first = new String[] {"Brown", "Black", "White", "Orange", "Wild", "Tiger", "Snow Leopard", "Koo", "Kooapps", "Gray", "Zombie", "Gumdrop", "Candy", "Choco", "Darth", "Dark", "Goldfish on a", "Evil", "German", "Beach", "City", "Haunted", "Spooky", "Golden"}; String[] last = new String[] {"Dog", "Cat", "Dalmation", "Bird", "Koobird", "Goldfish", "Turtle", "Clyde", "Selina", "Troy", "Oscar", "Lily", "Skateboard", "Swim E Fresh", "Pip", "Leo", "Raph", "Donny", "Mikey", "Man", "Sloth", "Ferret", "Grandpa", "Voviboye", "Goose"}; string n = ""; Random rnd = new Random(); int x = -1; int y = -1; x = rnd.Next(0,first.Length); y = rnd.Next(0,last.Length); Console.WriteLine(first[x] + " " + last[y]); } } }
run
|
edit
|
history
|
help
0
ConvertDotNetGuidToOracleGuid
okok2
Use ConcurrentQueue and ConcurrentDictionary with TPL (Simple example)
OddEven
Get Country IP
String to Decimal CSHARP
Overloading Unary operator ~ (to reverse the string)
Matrix Pattern
test
Explorer Diamond