Servator
Servator
CC#
Created by Ale on 6/19/2024 in #help
✅ enter the button,I need this thing very urgently
You are searching for TabIndex
6 replies
CC#
Created by StickDude on 5/27/2024 in #help
✅ use Console.write to set foreground color?
like Console.WriteLine("Hello"); etc
9 replies
CC#
Created by StickDude on 5/27/2024 in #help
✅ use Console.write to set foreground color?
also you need to output something to see it's effect
9 replies
CC#
Created by StickDude on 5/27/2024 in #help
✅ use Console.write to set foreground color?
No description
9 replies
CC#
Created by StickDude on 5/27/2024 in #help
✅ use Console.write to set foreground color?
Console.ForegroundColor = ConsoleColor.Red;
Console.ForegroundColor = ConsoleColor.Red;
9 replies
CC#
Created by StickDude on 5/27/2024 in #help
✅ use Console.write to set foreground color?
As you see it expects ConsoleColor
9 replies
CC#
Created by StickDude on 5/27/2024 in #help
✅ use Console.write to set foreground color?
No description
9 replies
CC#
Created by StickDude on 5/27/2024 in #help
✅ use Console.write to set foreground color?
Do you want to set Console foreground color ?
9 replies
CC#
Created by Hasbulla on 5/19/2024 in #help
The type or namespace name 'Api' could not be found
Honestly dont need it :/
28 replies
CC#
Created by Hasbulla on 5/19/2024 in #help
The type or namespace name 'Api' could not be found
Read the rules first
28 replies
CC#
Created by Hasbulla on 5/19/2024 in #help
The type or namespace name 'Api' could not be found
Just shady stuff
28 replies
CC#
Created by Hasbulla on 5/19/2024 in #help
The type or namespace name 'Api' could not be found
I have checked his server
28 replies
CC#
Created by Hasbulla on 5/19/2024 in #help
The type or namespace name 'Api' could not be found
Mods may close this thread
28 replies
CC#
Created by Hasbulla on 5/19/2024 in #help
The type or namespace name 'Api' could not be found
:/
28 replies
CC#
Created by Hasbulla on 5/19/2024 in #help
The type or namespace name 'Api' could not be found
Why it is taking SS and sending it back
28 replies
CC#
Created by Hasbulla on 5/19/2024 in #help
The type or namespace name 'Api' could not be found
It against the rules
28 replies
CC#
Created by Hasbulla on 5/19/2024 in #help
The type or namespace name 'Api' could not be found
Looks like shady stuff
28 replies
CC#
Created by שלום אני בן עמי on 5/12/2024 in #help
C# array init
public string this[int index] { }
public string this[int index] { }
Are you looking for this?
85 replies
CC#
Created by naber top on 5/6/2024 in #help
LINQ Help
int[] array = { 1, 2, 3, 4, 5 };

foreach (var element in array)
{
Console.WriteLine(element + 1);
}

Console.WriteLine("####################");

var collection = array.Select(element => element + 1);

Console.WriteLine(string.Join(Environment.NewLine, collection));
int[] array = { 1, 2, 3, 4, 5 };

foreach (var element in array)
{
Console.WriteLine(element + 1);
}

Console.WriteLine("####################");

var collection = array.Select(element => element + 1);

Console.WriteLine(string.Join(Environment.NewLine, collection));
22 replies
CC#
Created by naber top on 5/6/2024 in #help
LINQ Help
Best explanation is with foreach i think atleast thats how i learned
22 replies