Changes

no edit summary
Line 383: Line 383:  
{
 
{
 
   public bool ExampleBoolean { get; set; } = true;
 
   public bool ExampleBoolean { get; set; } = true;
   public float ExampleFloat { get; set; } = 0.5;
+
   public float ExampleFloat { get; set; } = 0.5f;
 
}
 
}
 
</source>
 
</source>
Line 398: Line 398:  
   {
 
   {
 
       this.ExampleBoolean = true;
 
       this.ExampleBoolean = true;
       this.ExampleFloat = 0.5;
+
       this.ExampleFloat = 0.5f;
 
   }
 
   }
 
}
 
}
6

edits