M7
M7
CC#
Created by M7 on 4/16/2024 in #help
Newbie tryna learn help with Console app
myabe my pc is just slow rn
62 replies
CC#
Created by M7 on 4/16/2024 in #help
Newbie tryna learn help with Console app
idk its on 1ms and its not that fast...
62 replies
CC#
Created by M7 on 4/16/2024 in #help
Newbie tryna learn help with Console app
like less then 1 ms
62 replies
CC#
Created by M7 on 4/16/2024 in #help
Newbie tryna learn help with Console app
how could i do partial millicseconds
62 replies
CC#
Created by M7 on 4/16/2024 in #help
Newbie tryna learn help with Console app
doesnt send letter by letter
62 replies
CC#
Created by M7 on 4/16/2024 in #help
Newbie tryna learn help with Console app
i dont see why this wont work
62 replies
CC#
Created by M7 on 4/16/2024 in #help
Newbie tryna learn help with Console app
static void TypeText(string text)
{
foreach (Char c in text)
{
Console.Write(c);
Thread.Sleep(100); // Adjust the sleep duration to change the speed
}
}
static bool MainMenu()
{
Console.Clear();
TypeText("Testing Testing Testing\n");
static void TypeText(string text)
{
foreach (Char c in text)
{
Console.Write(c);
Thread.Sleep(100); // Adjust the sleep duration to change the speed
}
}
static bool MainMenu()
{
Console.Clear();
TypeText("Testing Testing Testing\n");
62 replies
CC#
Created by M7 on 4/16/2024 in #help
Newbie tryna learn help with Console app
so im tryna under stand how the "for each" wirks
62 replies
CC#
Created by M7 on 4/16/2024 in #help
Newbie tryna learn help with Console app
was just tryna learn via throwing myself into somethin
62 replies
CC#
Created by M7 on 4/16/2024 in #help
Newbie tryna learn help with Console app
?
62 replies
CC#
Created by M7 on 4/16/2024 in #help
Newbie tryna learn help with Console app
dont get mad i got help of AI to get started with simple code
62 replies
CC#
Created by M7 on 4/16/2024 in #help
Newbie tryna learn help with Console app
didnt seem to work
62 replies
CC#
Created by M7 on 4/16/2024 in #help
Newbie tryna learn help with Console app
i read 2 threads on the fact and attempted to implement the suggestions into my project
62 replies
CC#
Created by M7 on 4/16/2024 in #help
Newbie tryna learn help with Console app
idk how to do that im sorry
62 replies
CC#
Created by M7 on 4/16/2024 in #help
Newbie tryna learn help with Console app
im learning as i start a project could you possibly give me some more insight?
62 replies
CC#
Created by M7 on 4/16/2024 in #help
Newbie tryna learn help with Console app
basically need the "testing testing testing" to appear letter by letter
62 replies
CC#
Created by M7 on 4/16/2024 in #help
Newbie tryna learn help with Console app
using System;

class Program
{
static void Main(string[] args)
{
bool showMenu = true;

while (showMenu)
{
showMenu = MainMenu();
}
}

static bool MainMenu()
{
Console.Clear();
Console.WriteLine("Testing Testing Testing");
Console.WriteLine("1) Option 1");
Console.WriteLine("2) Option 2");
Console.WriteLine("3) Exit");
Console.Write("\r\nSelect an option: ");

switch (Console.ReadLine())
{
case "1":
Console.WriteLine("You selected Option 1");
Console.WriteLine("Press any key to continue...");
Console.ReadKey();
return true;
case "2":
Console.WriteLine("You selected Option 2");
Console.WriteLine("Press any key to continue...");
Console.ReadKey();
return true;
case "3":
return false;
default:
return true;
}
}
}
using System;

class Program
{
static void Main(string[] args)
{
bool showMenu = true;

while (showMenu)
{
showMenu = MainMenu();
}
}

static bool MainMenu()
{
Console.Clear();
Console.WriteLine("Testing Testing Testing");
Console.WriteLine("1) Option 1");
Console.WriteLine("2) Option 2");
Console.WriteLine("3) Exit");
Console.Write("\r\nSelect an option: ");

switch (Console.ReadLine())
{
case "1":
Console.WriteLine("You selected Option 1");
Console.WriteLine("Press any key to continue...");
Console.ReadKey();
return true;
case "2":
Console.WriteLine("You selected Option 2");
Console.WriteLine("Press any key to continue...");
Console.ReadKey();
return true;
case "3":
return false;
default:
return true;
}
}
}
62 replies
CC#
Created by M7 on 4/16/2024 in #help
Newbie tryna learn help with Console app
heres the base im working off
62 replies
CC#
Created by M7 on 4/16/2024 in #help
Newbie tryna learn help with Console app
letter by letter
62 replies
CC#
Created by M7 on 4/16/2024 in #help
Newbie tryna learn help with Console app
i would like the text on the Console app text to apppear character by character
62 replies