Posts

Showing posts from March, 2018

C# fundamental

Image
Today, I am written this posting. I don't want the fundamental post. C# fundamental is like Variables, Array, if~else, for etc. You can search at google.com. You will know  through google.com to access a lot of information. If you don't know I recommend you will buy the book below. This book is basic book. This book is sold at Amazon.com.

C# standard explanation

Hi. I am Chris. It is first posting. I do upload about C#. C# is OOP(Object-Oriented Programming). So, C# use the function. I am used VSC(Visual Studio Community). You can install VSC go to "https://www.visualstudio.com/vs/community/" You can coding below source code Using System namespace HelloWorld { class Program { static void Main(string[] args) { Console.WriteLine("Hello World"); Console.Read(); } } } 1. It is about Using System explaining below System is located in mscorlib.dll file. So, If a compiler case It load about System in mscorlib.dll. mscorlib.dll is located in C drive at windows/Microsoft.NET/Framework/V.4.0.30319 Do you want to see System source code? You reference at website https://referencesource.microsoft.com/ 2. It is about namespace HelloWorld explaining below namespace is biggest mass. class belong to namespace. namespace name is not overlap. But class possible to ov...