- Xamarin 101 Series - This is a great 101 series to help you get up and running
- Xamarin Show on Channel9 - Home of all great Microsoft produced Xamarin content including Xamarin.Forms 101 with James and Maddy, Xamarin.Essentials API of the Week and much more!
- Xamarin Docs on Microsoft Docs
- Xamarin Essentials Docs
- My GitHub
- James Montemagno's Monkey Finder App
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; | |
| public class Program | |
| { | |
| public static void Main(string[] args) | |
| { | |
| var son = int.Parse(Console.ReadLine()); | |
| for(int i = 2; i <= Math.Sqrt(son) + 1; i++) | |
| { | |
| if(son % i == 0) |