public MyCustomError(@string Message, Abser Abser, ref MyError MyError) { this.Message = Message; this.Abser = Abser; this.m_MyErrorRef = new Ref <MyError>(ref MyError); }
public Record(Person Person, Employee Employee) { this.m_PersonRef = new Ref <Person>(Person); this.m_EmployeeRef = new Ref <Employee>(Employee); }
// Constructors public MyCustomError(NilType _) { this.Message = default; this.Abser = default; this.m_MyErrorRef = new Ref <MyError>(new MyError(nil)); }
// Constructors public Record(NilType _) { this.m_PersonRef = new Ref <Person>(new Person(nil)); this.m_EmployeeRef = new Ref <Employee>(new Employee(nil)); }