README.md
codeBasics0102 as generated and authored in replit
Coding01 is 01 . /* Use vscode.dev for quick edits online GitHub, Azure Repos, and local files. https://vscode.dev/ browser Extensions for Visual Studio Code @ https://marketplace.visualstudio.com/vscode
rm -r "/home/runner/codeBasics0102/obj/" rm -r "/home/runner/codeBasics0102/bin/" dotnet run --project "/home/runner/codeBasics0102/Coding01.csproj" . */ . . W3Schools is 02
// video lessons: https://learn.microsoft.com/en-au/shows/csharp-101/
// video's text chapters to follow along : https://learn.microsoft.com/en-us/dotnet/csharp/tour-of-csharp/tutorials/
// video's text chapters to follow along : https://learn.microsoft.com/en-us/dotnet/csharp/tour-of-csharp/tutorials/arrays-and-collections
// start the online IDE via: https://www.w3schools.com/cs/cs_compiler.php
// you usually want your file to have the same name as its main class.
// you can include constructors other than Main, see NLog below, for example. Constructors must have the same name as the class or struct
// names of class should use PascalCase, names of variables should use camelCase
// you can pass an array of args as inputs to the Main() method when you start the .cs app from the command line/shell
.
/* to run in replit's shell:
rm -r "/home/runner/codeBasics0102/obj/"
rm -r "/home/runner/codeBasics0102/bin/"
dotnet run --project "/home/runner/codeBasics0102/W3Schools.csproj"
.
*/