Skip to content

Commit

Permalink
Celebrating 10th year anniversary (#211)
Browse files Browse the repository at this point in the history
+semver:patch
  • Loading branch information
hazzik authored Oct 20, 2022
1 parent 69eea53 commit d6dfc9e
Showing 1 changed file with 4 additions and 7 deletions.
11 changes: 4 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
DelegateDecompiler
====================
DelegateDecompiler celebrates 10th year anniversary 🎂
======================================================

![https://ci.appveyor.com/project/hazzik/delegatedecompiler/branch/main](https://ci.appveyor.com/api/projects/status/github/hazzik/delegatedecompiler?branch=main&svg=true)
![https://nuget.org/packages/DelegateDecompiler](https://img.shields.io/nuget/dt/DelegateDecompiler.svg)

A tool which is able to decompile a delegate or a method body to its lambda representation
A library that is able to decompile a delegate or a method body to their lambda representation

## Sponsorship

Expand All @@ -20,10 +20,7 @@ Asume we have a class with a computed property
class Employee
{
[Computed]
public string FullName
{
get { return FirstName + " " + LastName; }
}
public string FullName => FirstName + " " + LastName;

public string LastName { get; set; }

Expand Down

0 comments on commit d6dfc9e

Please sign in to comment.