This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
namespace Dossiers | |
{ | |
internal class Class | |
{ | |
static void Main(string[] args) | |
{ | |
const string CommandAddDossier = "1"; | |
const string CommandShowDossiers = "2"; | |
const string CommandDeleteDossier = "3"; | |
const string CommandFindEmployee = "4"; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
namespace Shaffle | |
{ | |
internal class Class | |
{ | |
static void Main(string[] args) | |
{ | |
int[] numbers = { 1, 2, 3}; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
namespace UIElement | |
{ | |
internal class Class | |
{ | |
static void Main(string[] args) | |
{ | |
int healthPercentage = 20; | |
int maxHealth = 10; | |
int manaPercentage = 40; | |
int maxMana = 10; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
namespace Function | |
{ | |
internal class Class | |
{ | |
static void Main(string[] args) | |
{ | |
int number = 0; | |
number = ReadInt(number); | |
Console.WriteLine("\nResult : " + number); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
namespace Shifts | |
{ | |
internal class Class | |
{ | |
static void Main(string[] args) | |
{ | |
string[] characters = {")", "("}; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
namespace Shifts | |
{ | |
internal class Class | |
{ | |
static void Main(string[] args) | |
{ | |
string[] characters = {"(", "(", "(", ")", "(", ")"}; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
namespace Shifts | |
{ | |
internal class Class | |
{ | |
static void Main(string[] args) | |
{ | |
int[] numbers = { 1, 2, 3, 4 }; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
namespace Split | |
{ | |
internal class Class | |
{ | |
static void Main(string[] args) | |
{ | |
string sentence = "I play games !"; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
namespace Order | |
{ | |
internal class Class | |
{ | |
static void Main(string[] args) | |
{ | |
int[] numbers = { 3, 1, 4, 2, 10, 6, 8, 7, 9, 5}; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
namespace Array | |
{ | |
internal class Class | |
{ | |
static void Main(string[] args) | |
{ | |
int[] numbers = new int[30]; | |
int minValue = 0; | |
int maxValue = 3; |
NewerOlder