Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/devvyyxyz/open-c-sharp-templates

Simple open source C sharp scripts for beginners
https://github.com/devvyyxyz/open-c-sharp-templates

c-sharp code examples simple template

Last synced: about 18 hours ago
JSON representation

Simple open source C sharp scripts for beginners

Awesome Lists containing this project

README

        

# open-c-sharp-templates
Simple open source C sharp scripts for beginners

### Comments
```cs
// This is a comment
Console.WriteLine("Hello World!");
```

### Variables
types:
- int
- string
- double
```cs
type variableName = value;
```

### Output

```cs
Console.WriteLine("Hello World!");
```

### Conditions
```cs
if //(condition)
{
// block of code to be executed if the condition is True
}
```

### Simple math
```
int mathEx;
mathEx = 1 + 1
```