C#

1234567891011121314151617181920
Across
  1. 3. Type of String that is defined by a verbatim identifier
  2. 7. A set of named constants
  3. 10. Conditional statement for a single variable's value
  4. 11. File type used when implementing frontend with .net Maui
  5. 14. Action made to request changes to master repository
  6. 15. Alternative frontend framework to .net Maui
  7. 16. Loop that terminates when an expected condition is met
  8. 18. Website used for storing code repositories
  9. 19. The method used to create an instance of an object
Down
  1. 1. Name given to a parent class of an object
  2. 2. Loop that terminates when an expected condition is lost
  3. 4. Method of grouping different data-types into a single variable
  4. 5. Design for the frontend
  5. 6. Defining data-type for a nullable real variable
  6. 8. A class modifier that prevents invoking or object creation
  7. 9. Acronym for the type of architecture used by .net Maui
  8. 12. Alternative version of a code repository with changes, which will eventually be added to the main repository
  9. 13. Sign used for String Interpolation
  10. 17. value assigned to x from this code: string? x = "abc"; x ??= "def";
  11. 20. A class modifier that prevents a class from being inherited from