Advertisement
Guest User

Untitled

a guest
Oct 15th, 2019
288
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.41 KB | None | 0 0
  1. using System;
  2. using System.Collections;
  3. using System.Text;
  4.  
  5.   namespace Budowniczy
  6.   {
  7.     public class CodeBuilder
  8.     {
  9.       // TODO
  10.     }
  11.  
  12.     // Nie zmieniaj poniższej klasy!
  13.     class MainClass
  14.     {
  15.       public static void Main (string[] args)
  16.       {
  17.         var cb = new CodeBuilder("Person").AddField("Name", "string").AddField("Age", "int");
  18.         Console.WriteLine(cb);
  19.       }
  20.     }
  21.   }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement