stasemsoft / softwarematerial

Open software-material used by FHICT (Fontys Hogeschool voor ICT).
Creative Commons Attribution 4.0 International
5 stars 20 forks source link

syntax errrors theorie_Property #18

Closed 886419 closed 2 years ago

886419 commented 2 years ago

https://stasemsoft.github.io/softwarematerial/docs/objects/theorie_Property

public int Minutes                  // Property
{
    get { return seconds / 60 };    // Getter
    set { seconds = value * 60 };   // Setter

I'm not a dotnet expert yet :) but the semicolons seem to belong inside the brackets. Would be cool if we could test-compile examples automagically...

coentjo commented 2 years ago

Thanks! Changed it.