ILSpy反编译器


ILSpy反编译器工具,此文档中含有源代码,ILSpy反编译器类库源代码,一款非常强大的国外的反编译器工具,对于学习反编译技术的程序员非常适用.操作非常简单使用VS2010编译程序,编译通过,主界面出现后直接添加dll文件,就显示出其源代码.目前支持.net2.0,.net3.5,默认是.net2.0
资源截图
代码片段和文件信息
// Copyright (c) AlphaSierraPapa for the SharpDevelop Team (for details please see doccopyright.txt)
// This code is distributed under the GNU LGPL (for details please see doclicense.txt)

using System;
using System.Windows.Input;

namespace ICSharpCode.AvalonEdit
{
/// 
/// Custom commands for AvalonEdit.
/// 

public static class AvalonEditCommands
{
/// 
/// Deletes the current line.
/// The default shortcut is Ctrl+D.
/// 

public static readonly RoutedCommand DeleteLine = new RoutedCommand(
“DeleteLine“ typeof(TextEditor)
new InputGestureCollection {
new KeyGesture(Key.D ModifierKeys.Control)
});

/// 
/// Removes leading whitespace from the selected lines (or the whole document if the selection is empty).
/// 

[System.Diagnostics.CodeAnalysis.SuppressMessage(“Microsoft.Naming“ “CA1702:CompoundWordsShouldBeCasedCorrectly“ MessageId = “Whitespace“
                                                 Justification = “WPF uses ‘Whitespace‘“)]
public static readonly RoutedCommand RemoveLeadingWhitespace = new RoutedCommand(“RemoveLeadingWhitespace“ typeof(TextEditor));

/// 
/// Removes trailing whitespace from the selected lines (or the whole document if the selection is empty).
/// 

[System.Diagnostics.CodeAnalysis.SuppressMessage(“Microsoft.Naming“ “CA1702:CompoundWordsShouldBeCasedCorrectly“ MessageId = “Whitespace“
                                                 Justification = “WPF uses ‘Whitespace‘“)]
public static readonly RoutedCommand RemoveTrailingWhitespace = new RoutedCommand(“RemoveTrailingWhitespace“ typeof(TextEditor));

/// 
/// Converts the selected text to upper case.
/// 

public static readonly RoutedCommand ConvertToUppercase = new RoutedCommand(“ConvertToUppercase“ typeof(TextEditor));

/// 
/// Converts the selected text to lower case.
/// 

public static readonly RoutedCommand ConvertToLowercase = new RoutedCommand(“ConvertToLowercase“ typeof(TextEditor));

/// 
/// Converts the selected text to title case.
/// 

public static readonly RoutedCommand ConvertTotitleCase = new RoutedCommand(“ConvertTotitleCase“ typeof(TextEditor));

/// 
/// Inverts the case of the selected text.
/// 

public static readonly RoutedCommand InvertCase = new RoutedCommand(“InvertCase“ typeof(TextEditor));

/// 
/// Converts tabs to spaces in the selected text.
/// 

public static readonly RoutedCommand ConvertTabsToSpaces = new RoutedCommand(“ConvertTabsToSpaces“ typeof(TextEditor));

/// 
/// Converts spaces to tabs in the selected text.
/// 

public static readonly RoutedCommand ConvertSpacesToTabs = new RoutedCommand(“ConvertSpacesToTabs“ typeof(TextEditor));


 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件        1955  2012-11-12 10:25  51Aspx源码必读.txt
     文件         300  2012-11-12 10:25  clean.bat
     文件         180  2012-11-12 10:25  debugbuild.bat
     文件        4945  2012-11-12 10:25  from.gif
     文件       12751  2012-11-12 10:25  ILSpy.sln
     文件      481792  2012-11-12 10:25  ILSpy.suo
     文件         514  2012-11-12 10:25  README.txt
     文件         182  2012-11-12 10:25  releasebuild.bat
     文件         257  2012-11-12 10:25  REVISION
     文件         125  2012-11-12 10:25  最新Asp.Net源码下载.url
     文件         208  2012-11-12 10:25  AvalonEditcopyright.txt
     文件       24841  2012-11-12 10:25  AvalonEditlicense.txt
     文件        1930  2012-11-12 10:25  AvalonEditDocumentationArchitecture.aml
     文件        5289  2012-11-12 10:25  AvalonEditDocumentationCode Completion.aml
     文件        8646  2012-11-12 10:25  AvalonEditDocumentationCoordinate Systems.aml
     文件        3327  2012-11-12 10:25  AvalonEditDocumentationFolding.aml
     文件         674  2012-11-12 10:25  AvalonEditDocumentationICSharpCode.AvalonEdit.content
     文件       12699  2012-11-12 10:25  AvalonEditDocumentationICSharpCode.AvalonEdit.shfbproj
     文件       26479  2012-11-12 10:25  AvalonEditDocumentationLicense.html
     文件        3560  2012-11-12 10:25  AvalonEditDocumentationSample Application.aml
     文件       12458  2012-11-12 10:25  AvalonEditDocumentationSyntax Highlighting.aml
     文件        9811  2012-11-12 10:25  AvalonEditDocumentationText Rendering.aml
     文件        2977  2012-11-12 10:25  AvalonEditDocumentationWelcome.aml
     文件       30932  2012-11-12 10:25  AvalonEditDocumentationMediaNamespaceDependencies.png
     文件       31718  2012-11-12 10:25  AvalonEditDocumentationMediaRenderingPipeline.png
     文件       10086  2012-11-12 10:25  AvalonEditDocumentationMediaVisualTree.png
     文件       86390  2012-11-12 10:25  AvalonEditDocumentationMediaWelcomeScreenshot.png
     文件        3943  2012-11-12 10:25  AvalonEditICSharpCode.AvalonEditAvalonEditCommands.cs
     文件       21763  2012-11-12 10:25  AvalonEditICSharpCode.AvalonEditICSharpCode.AvalonEdit.csproj
     文件         596  2012-11-12 10:25  AvalonEditICSharpCode.AvalonEditICSharpCode.AvalonEdit.snk
     文件       35445  2012-11-12 10:25  AvalonEditICSharpCode.AvalonEditTextEditor.cs
............此处省略2562个文件信息

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容, 请发送邮件举报,一经查实,本站将立刻删除。

发表评论

评论列表(条)