Skip to content

Instantly share code, notes, and snippets.

View gpeipman's full-sized avatar

Gunnar Peipman gpeipman

View GitHub Profile
@gpeipman
gpeipman / test.md
Created September 26, 2022 08:20
Hello World Markdown

Hello World

This is content converted from Markdown!

Here's a JSON sample:

{
  "foo": "bar"
}
@gpeipman
gpeipman / test.html
Created September 26, 2022 08:19
Hello World Html
<html>
<head>
<style>
h1 {
font-family: Calibri;
}
</style>
</head>
<body>
<h1>Hello World!</h1>
public interface IViewModel : INotifyPropertyChanged
{
}
public class MvvmComponentBase : ComponentBase
{
private IViewModel _viewModel;
public IViewModel ViewModel
{