+ 1
Hello i need some help I'm really new here and i don't know anything abot programming i wont to build an android app can you ...
Hello i need some help I'm really new here and i don't know anything abot programming i wont to build an android app can you tell me How can i ???
7 Respostas
+ 11
or use Xamarin with Visual Studio.
0
Hi, Mahmoud.
Most of android development is java-based, so you can start with learn Java, and put an effort to understand the Object Oriented in Java.
0
Hello, I can teach you some useful things. Look at the // in the code.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SoloLearn
{
class Program
{
static void Main(string[] args)
{
//To write comments, put a // in front of what you want to write, like I'm doing here. (A comment is something you write that you don't want to interfere in the code.
}
}
}
0
When you start a new project, it will look like this:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SoloLearn
{
class Program
{
static void Main(string[] args)
{
}
}
}
0
When you code you need to start where the arrows are.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SoloLearn
{
class Program
{
static void Main(string[] args)
{
______________________
______________________ <---
______________________ <---
______________________ <---
}
}
}
0
To write something in your code that will show up when it's running, write this: Console.WriteLine("you can write anything you want in here")
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SoloLearn
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Like this");
}
}
}
0
I hope I have helped! Bye.