![]() |
|
[A10EN/Release] String Generator - Printable Version +- Sinisterly (https://sinister.ly) +-- Forum: Coding (https://sinister.ly/Forum-Coding) +--- Forum: Visual Basic & .NET Framework (https://sinister.ly/Forum-Visual-Basic-NET-Framework) +--- Thread: [A10EN/Release] String Generator (/Thread-A10EN-Release-String-Generator) |
[A10EN/Release] String Generator - a10en - 04-26-2015 Hello, guys. Let me introduce to the String Generator ![]() If you select the check box, the output is generation to string. ![]() <Download> <VirusTotal> RE: [A10EN/Release] String Generator - 0xDEAD10CC - 04-27-2015 There's nothing difficult about concatenating strings. The program isn't really useful, you should have just posted the source code because that would've been much easier. Additionally, you could have received feedback on how to improve this program further too. RE: [A10EN/Release] String Generator - Inori - 04-27-2015 (04-27-2015, 05:17 AM)0xDEAD10CC Wrote: There's nothing difficult about concatenating strings. The program isn't really useful, you should have just posted the source code because that would've been much easier. Additionally, you could have received feedback on how to improve this program further too. I agree, it's not the most useful thing ever but hey, at least he's contributing and not asking for a million things from us like almost every new member. RE: [A10EN/Release] String Generator - 0xDEAD10CC - 04-28-2015 Code: const string alpha = "abcdefghijklmnopqrstuvwxyz";
const string digitsStr = "0123456789";
string result = lowerAlpha ? alpha : "";
if (upperAlpha) result += alpha.ToUpper();
if (digits) result += digitsStr;
... |