Skip to content
#

msil

Here are 57 public repositories matching this topic...

rolandh
rolandh commented Jun 3, 2019

Is your feature request related to a problem? Please describe.
If you have XAML Databinding to public members and use ForceRen (because lets assume your project is not a public library so renaming public methods is acceptable) then this will obviously break databinding.

Describe the solution you'd like
I've hacked a solution which extracts all databinding out of the XAML and makes a l

IL2C
MSDN-WhiteKnight
MSDN-WhiteKnight commented Feb 9, 2020

When outputting signature of entry point method as CIL assembler code, it should be marked with .entrypoint directive.

Example code:

using System;
using System.Reflection;
using CilBytecodeParser;

class Program
{    
    public static void Main(string[] args)
    {
        Console.WriteLine(CilAnalysis.MethodToText(MethodBase.GetCurrentMethod()));
        Console.ReadKey();

Improve this page

Add a description, image, and links to the msil topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the msil topic, visit your repo's landing page and select "manage topics."

Learn more