Enquiry | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
- 5

Enquiry

What is the Fastest way to learn C#

13th Oct 2020, 10:45 PM
NWOGU JOSHUA
NWOGU JOSHUA - avatar
19 Answers
+ 2
wait nvm, try this string name = Console.ReadLine(); int age = Int32.Parse(Console.ReadLine()); Console.WriteLine(“Name: “ + name) Console.WriteLine(“Age: “ + age
14th Oct 2020, 12:03 PM
Gizmo-Lang
Gizmo-Lang - avatar
+ 3
From this app or w3school website
13th Oct 2020, 10:50 PM
Muhammad Galhoum
Muhammad Galhoum - avatar
+ 3
Learning a specific programming language is not related to time, depending on the percentage of your understanding of the information and also the amount of effort expended in learning, knowing that we do not master any language fully
13th Oct 2020, 11:02 PM
Muhammad Galhoum
Muhammad Galhoum - avatar
0
I'm done with d app
13th Oct 2020, 10:51 PM
NWOGU JOSHUA
NWOGU JOSHUA - avatar
0
Reading it a second time now
13th Oct 2020, 10:51 PM
NWOGU JOSHUA
NWOGU JOSHUA - avatar
0
Thanks
14th Oct 2020, 12:08 AM
NWOGU JOSHUA
NWOGU JOSHUA - avatar
0
Please any idea on this? Write a program to take a person's name and age as input and output the corresponding text in the provided format. Sample Input Tom 26 Sample Output Name: Tom Age: 26 Hint Console.ReadLine() method returns only a string. You need to convert the age to an integer.
14th Oct 2020, 11:06 AM
NWOGU JOSHUA
NWOGU JOSHUA - avatar
0
you can do Int32.Parse(input); this will turn it into an int, then when you add the name: and age: then you will need to use this string name = Console.ReadLine(); string age = Console.ReadLine(); Console.WriteLine(“Name: ” + name); Console.WriteLine(“Age: “ + age
14th Oct 2020, 12:01 PM
Gizmo-Lang
Gizmo-Lang - avatar
0
Please what is the shortcut key to prevent my cursor from highlighting a letter in a text in Visual Studio automatically.. (it's slowing me down!)
14th Oct 2020, 12:59 PM
NWOGU JOSHUA
NWOGU JOSHUA - avatar
0
Don't know what I did or pressed to bring this upon myself
14th Oct 2020, 12:59 PM
NWOGU JOSHUA
NWOGU JOSHUA - avatar
0
does your cursor turn into a light gray rectangle?
14th Oct 2020, 9:33 PM
Gizmo-Lang
Gizmo-Lang - avatar
0
Yes
15th Oct 2020, 12:25 PM
NWOGU JOSHUA
NWOGU JOSHUA - avatar
0
I resolved it by.. quiting n restarting. Thank you
15th Oct 2020, 12:25 PM
NWOGU JOSHUA
NWOGU JOSHUA - avatar
0
How would I write a method with method name "Compare" that accepts three string arguments? Please help urgent please!
27th Oct 2020, 1:20 PM
NWOGU JOSHUA
NWOGU JOSHUA - avatar
0
How would I write a method with method name "Compare" that accepts three string arguments?
27th Oct 2020, 1:26 PM
NWOGU JOSHUA
NWOGU JOSHUA - avatar
0
How would I write a method with method name "Compare" that accepts three string arguments?
27th Oct 2020, 1:26 PM
NWOGU JOSHUA
NWOGU JOSHUA - avatar
0
public static void Compare(string strOne, string str2, string str3) { }
27th Oct 2020, 1:53 PM
Gizmo-Lang
Gizmo-Lang - avatar
0
what is your return type gonna be
27th Oct 2020, 1:54 PM
Gizmo-Lang
Gizmo-Lang - avatar
0
static void Compare(string str1, string str2, string str3) { } static void main() { string arg1, arg2, arg3 Compare(arg1, arg2, arg3); }
27th Oct 2020, 5:46 PM
Gizmo-Lang
Gizmo-Lang - avatar