| [ Web Proxy ] |
| Viewing: https://raw.githubusercontent.com/TheGer/Examples/master/Example1/RectangleExample/Program.cs | [Back] [Original] |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace RectangleExample
{
class Program
{
static void Main(string[] args)
{
Rectangle myR = new Rectangle(10, 10);
Console.WriteLine(myR.drawMe());
Console.ReadLine();
}
}
}
| Web Proxy Viewer | New URL | Original Page |