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
- Host: GitHub
- URL: https://github.com/andredarcie/dotnet-core-quick-reference-guide
- Owner: andredarcie
- License: mit
- Created: 2018-01-15T13:03:58.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2018-02-21T21:13:49.000Z (over 8 years ago)
- Last Synced: 2025-10-13T06:38:58.672Z (8 months ago)
- Topics: csharp, docs, dotnet-core, dotnet-core2, dotnet-framework
- Homepage:
- Size: 10.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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).