a da sa aj 30 minut??





This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
Zobrazi� pr�spevky MenuQuote from: kakan7 on 11.03.2008, 03:18:42
ale ta ked som dal gradebook tak akurat za tu otz som mal 0 bodov
(kedze som mal jednu zle)
using System;
using System.Collections.Generic;
using System.Text;
namespace Shapes
{
public class Line : Shape
{
private Point _endPoint;
public Line(Point begin, Point end) : base(begin)
{
this._endPoint = end;
}
public Line(Point begin, Point end, string color)
: base(begin,color)
{
this._endPoint = end;
}
public Point BeginPoint
{
get { return this.Location; }
}
public Point EndPoint
{
get { return this._endPoint; }
}
public override void Draw()
{
Console.WriteLine("I am drawing line from {0} to {1} with {2} color",
this.BeginPoint, this.EndPoint, this.Color);
}
}
}
Quote from: Leon on 09.03.2008, 19:53:44
asi vás sklamem ale natoto som antitalentani z Mao-vho postu nechápem