# C-Sharp
## Definition(s)
### Nexus: [[Nexus - Google Analytics Certificate Course]]
#### Sub-context: [[Google Analytics - 7 Data Analysis with R Programming - Module 2 - Programming using RStudio]]
>[! Definition]
>An object-oriented programming language used to create games and mobile apps in the .NET [[Open-source|open source]] developer platform
## Examples
```c#
// C# program to print Hello World!
using System;
// namespace declaration
namespace HelloWorldApp {
// Class declaration
class Geeks {
// Main Method
static void Main(string[] args) {
// statement
// printing Hello World!
Console.WriteLine("Hello World!");
// To prevents the screen from
// running and closing quickly
Console.ReadKey();
}
}
}
```
## Related
[[C++]]
## Resources
## Flashcards
The below code are generated for use with [Spaced Repetition plugin](https://github.com/st3v3nmw/obsidian-spaced-repetition/) [docs](https://www.stephenmwangi.com/obsidian-spaced-repetition/)