Programming/C Sharp
Jump to navigation
Jump to search
C# is a higher level version of C. It was designed by Microsoft, and for the longest time, was generally only supported on Windows.
It's used often in large, enterprise/business scale projects, due to having solid scaffolding for enforcing consistency through the project, which allows many people to work on a given project with less maintenance overhead. This is accomplished via things like required strong typing and good support for the interface class structure.
Comments
Inline Comments
// This is an inline comment.
Block Comments
/// This is a block comment. /// Comment line 2. /// Another block comment line.