24 lines
596 B
C#
24 lines
596 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Runtime.Remoting.Messaging;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace Obfuz.Rename
|
|||
|
{
|
|||
|
public static class NameMakerFactory
|
|||
|
{
|
|||
|
public static INameMaker CreateNameMakerBaseASCIICharSet()
|
|||
|
{
|
|||
|
var words = new List<string>();
|
|||
|
for (int i = 0; i < 26; i++)
|
|||
|
{
|
|||
|
words.Add(((char)('a' + i)).ToString());
|
|||
|
words.Add(((char)('A' + i)).ToString());
|
|||
|
}
|
|||
|
return new NameMaker(words);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|