Skip to content

Instantly share code, notes, and snippets.

View dimohy's full-sized avatar

dimohy dimohy

  • Korea
View GitHub Profile
@na1307
na1307 / Camel.md
Last active October 15, 2025 10:39

Camel Concept

개요 (Overview)

Camel(Common Adaptive Managed Expressive Language의 약자)은 강력한 .NET 언어입니다. C#과 Visual Basic과의 호환성을 제공합니다. Camel은 다른 .NET 언어들과 마찬가지로 IL(Intermediate Language)로 컴파일되며, CLR(Common Language Runtime)에서 실행됩니다.

이 언어는 실존하는 언어가 아니며, 이 문서는 "이런 언어가 있다면 좋겠다"는 개념을 설명하기 위한 것입니다.

문법 (Syntax)

Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@davidfowl
davidfowl / MinimalAPIs.md
Last active September 25, 2025 20:44
Minimal APIs at a glance
@lmadhavan
lmadhavan / KeyboardAcceleratorWorkaround.cs
Created July 12, 2021 04:55
WinUI KeyboardAccelerator workaround
public static class KeyboardAcceleratorWorkaround
{
public static void CreateShadowAccelerators(this MenuBar menuBar, UIElement target)
{
foreach (var menu in menuBar.Items)
{
ProcessItems(menu.Items, target);
}
}
@evan-choi
evan-choi / ObjectSelector.cs
Last active August 5, 2021 00:44
ObjectSelector is a simple class written for navigating nested object properties.
using System;
using System.Collections.Concurrent;
using System.Collections.Generic;
using System.Linq;
using System.Linq.Expressions;
using System.Reflection;
using System.Runtime.CompilerServices;
/*
* Syntax: