Ejemplo n.º 1
0
 public Line(ITextUtils t, int i) : base(t, i)
 {
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Init with the specified platform implementation.
 /// </summary>
 internal static void Init(ITextUtils platformImplementation)
 {
     implementation = platformImplementation;
 }
Ejemplo n.º 3
0
 public Length(ITextUtils t, int value) : base(t, value)
 {
 }
Ejemplo n.º 4
0
 public Base(ITextUtils t, int value)
 {
     _t    = t;
     Value = value;
 }
Ejemplo n.º 5
0
 public BallFactory(IRandomNumberGenerator r, ITextUtils t)
 {
     _r = r;
     _t = t;
 }