Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.
 
 
 

16 rindas
236 B

  1. using System;
  2. namespace SUISSEngine
  3. {
  4. public class ParentReference : SelfReference
  5. {
  6. public ParentReference(bool optional) : base(optional, false, true)
  7. {
  8. }
  9. public ParentReference() : this(false)
  10. {
  11. }
  12. }
  13. }