Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/devvyyxyz/open-c-sharp-templates
- Owner: devvyyxyz
- Created: 2023-09-14T12:15:30.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-09-28T12:18:13.000Z (over 1 year ago)
- Last Synced: 2024-12-17T07:35:10.401Z (about 2 months ago)
- Topics: c-sharp, code, examples, simple, template
- Language: C#
- Homepage:
- Size: 10.7 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```