Skip to content

Instantly share code, notes, and snippets.

View rahiyansafz's full-sized avatar
I’d rather take coffee than compliments just now.

Rahiyan Safin rahiyansafz

I’d rather take coffee than compliments just now.
View GitHub Profile
Imports System
Public Class Main
Public Shared Sub Main()
System.Console.WriteLine("Hello, world!")
End Sub
End Class
let message: string = 'Hello, World!';
console.log(message);
fn main() {
println!("Hello, world!");
}
IO.puts("Hello, World!")
puts "Hello World!"
@rahiyansafz
rahiyansafz / .NET6Migration.md
Created September 20, 2021 18:35 — forked from davidfowl/.NET6Migration.md
.NET 6 ASP.NET Core Migration
using Microsoft.AspNetCore.Mvc;
using Newtonsoft.Json;
using ShoppingCartApp.ExtensionMethod;
using ShoppingCartApp.Models;
namespace ShoppingCartApp.Controllers
{
public class ShoppingCartController : Controller
{