0
problem void bool
its a exercise of sololearn, i dont know if im doing right. thanks. the error is CS1503 https://code.sololearn.com/cEI3V9lWyinM/?ref=app
4 Answers
0
Jose Perez
using System;
class Program
{
static void Main(string[] args)
{
Settings(name:"James",age:25,lang:"Spanish");
Settings(name:"Tom",age: 36);
}
static void Settings(string name, int age, string lang = "english")
{
Console.WriteLine(quot;Name: {name}");
Console.WriteLine(quot;Age: {age}");
Console.WriteLine(quot;Language: {lang}");
}
}
0
it doesnt works anyway Flash
0
Jose Perez learn before complaining
https://code.sololearn.com/c5ZZgc2RZ3R6/?ref=app
0
ok now works, thank you Flash!