Skip to content

andredarcie/dotnet-core-quick-reference-guide

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 

Repository files navigation

.NET Core Quick Reference Guide

Discovering .net core through code samples. 😉

Table of Contents

  • Hello World
  • 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

using System;
namespace HelloWorldApplication
{
   class HelloWorld
   {
      static void Main(string[] args)
      {
         Console.WriteLine("Hello World");
      }
   }
}

⬆ back to top

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.