Skip to content

Instantly share code, notes, and snippets.

@erdemcemal
erdemcemal / version.json
Last active April 10, 2026 10:52
Glazr app version config
{
"minimumVersion": "1.0.0",
"latestVersion": "1.0.0",
"updateMessage": null,
"updateURL": "https://apps.apple.com/app/id0000000000"
}
static string FindSubString(string str)
{
var validVowels = new List<char> {'a', 'e', 'i', 'o', 'u'};
List<string> subStrings = new List<string>();
var index = 0;
string subString = "";
foreach (var item in str)
{
if (item == validVowels[index])
{