This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.class public auto ansi beforefieldinit WhatIWantToWrite | |
extends [System.Runtime]System.Object | |
{ | |
// Methods | |
.method public hidebysig static | |
void Main ( | |
string[] args | |
) cil managed | |
{ | |
// Method begins at RVA 0x2050 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class EntryPoint | |
{ | |
public static void Main(string[] args) | |
{ | |
// 1 | |
var assemblyLocation = Assembly.GetExecutingAssembly().Location; | |
var pathToOriginalDll = | |
Path.GetFullPath(Path.Combine(assemblyLocation, "../path/to/your.dll")); | |
// 2 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Rx.NET name | Reactive Extensions name | |
---|---|---|
Observable.Return | Observable.just | |
Select | map | |
SelectMany | flatMap | |
Where | filter | |
Aggregate | reduce | |
Debounce | throttle | |
Synchronize | serialize |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using Android.App; | |
using Android.OS; | |
using Android.Support.Design.Widget; | |
using Android.Support.V7.App; | |
namespace LeakTest | |
{ | |
[Activity(Label = "@string/app_name", Theme = "@style/AppTheme.NoActionBar", MainLauncher = true)] | |
public class MainActivity : AppCompatActivity | |
{ |
OlderNewer