Run Code
|
API
|
Code Wall
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
Lesson 2-2
//Rextester.Program.Main is the entry point for your code. Don't change it. //Compiler version 4.0.30319.17929 for Microsoft (R) .NET Framework 4.5 using System; using System.Collections.Generic; using System.Linq; using System.Text.RegularExpressions; namespace Rextester { public class Program { public static void Main(string[] args) { Rectangle rect = new Rectangle(); rect.Length = 10.0; rect.Width = 20.0; double area = rect.GetArea(); Console.WriteLine("Area of Rectangle: {0}", area); } } public class Rectangle { public double length; public double width; public double Length { get { return length; } set { if (value > 0.0) length = value; } } public double Width { get { return width; } set { if (value > 0.0) width = value; } } public double GetArea() { return length * width; } } }
run
|
edit
|
history
|
help
0
ruSrib
SingleLinkedList c# operations
Random number maker block (better version)
database interior 0.2
XPath
Gamez
asxsd dxsd
1
Pyramid
PrimeiroProjeto