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

https://github.com/andredarcie/dotnet-core-quick-reference-guide

.NET Core guide
https://github.com/andredarcie/dotnet-core-quick-reference-guide

csharp docs dotnet-core dotnet-core2 dotnet-framework

Last synced: 21 days ago
JSON representation

.NET Core guide

Awesome Lists containing this project

README

          

# .NET Core Quick Reference Guide

> Discovering .net core through code samples. 😉

## Table of Contents
* [Hello World](#hello-world-example)
* XML (TODO)
- XLinq
- XML Document
- XPath
- XSD
- XSL
* Serialization (TODO)
- BinaryFormatter
- Data Contract
- XML
* Networking (TODO)
- Sockets
- Http
- Mail
- WebSockets
* IO (TODO)
- Files
- Compression
- MMF
* Threading (TODO)
- Threads
- Thread Pool
- Tasks
* Core (TODO)
- Primitives
- Collections
- Reflection
- Interop
- Linq

## Hello World Example

```csharp
using System;
namespace HelloWorldApplication
{
class HelloWorld
{
static void Main(string[] args)
{
Console.WriteLine("Hello World");
}
}
}
```
**[⬆ back to top](#table-of-contents)**

## Contributing

Feel free to open tickets or send pull requests with improvements. Thanks in
advance for your help!

### How to Contribute?

Just follow the contribution guidelines

## License

The andredarcie/csharp-guide is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).