SampleSet.cs 183 B

123456789
  1. namespace Day2;
  2. public record SampleSet(int Red, int Green, int Blue)
  3. {
  4. public void Print()
  5. {
  6. Console.WriteLine($"R {Red}, G {Green}, B {Blue}");
  7. }
  8. }