资源简介
ILSpy反编译器工具,此文档中含有源代码,ILSpy反编译器类库源代码,一款非常强大的国外的反编译器工具,对于学习反编译技术的程序员非常适用.操作非常简单使用VS2010编译程序,编译通过,主界面出现后直接添加dll文件,就显示出其源代码.目前支持.net2.0,.net3.5,默认是.net2.0
代码片段和文件信息
// Copyright (c) AlphaSierraPapa for the SharpDevelop Team (for details please see \doc\copyright.txt)
// This code is distributed under the GNU LGPL (for details please see \doc\license.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 AvalonEdit\copyright.txt
文件 24841 2012-11-12 10:25 AvalonEdit\license.txt
文件 1930 2012-11-12 10:25 AvalonEdit\Documentation\Architecture.aml
文件 5289 2012-11-12 10:25 AvalonEdit\Documentation\Code Completion.aml
文件 8646 2012-11-12 10:25 AvalonEdit\Documentation\Coordinate Systems.aml
文件 3327 2012-11-12 10:25 AvalonEdit\Documentation\Folding.aml
文件 674 2012-11-12 10:25 AvalonEdit\Documentation\ICSharpCode.AvalonEdit.content
文件 12699 2012-11-12 10:25 AvalonEdit\Documentation\ICSharpCode.AvalonEdit.shfbproj
文件 26479 2012-11-12 10:25 AvalonEdit\Documentation\License.html
文件 3560 2012-11-12 10:25 AvalonEdit\Documentation\Sample Application.aml
文件 12458 2012-11-12 10:25 AvalonEdit\Documentation\Syntax Highlighting.aml
文件 9811 2012-11-12 10:25 AvalonEdit\Documentation\Text Rendering.aml
文件 2977 2012-11-12 10:25 AvalonEdit\Documentation\Welcome.aml
文件 30932 2012-11-12 10:25 AvalonEdit\Documentation\Media\NamespaceDependencies.png
文件 31718 2012-11-12 10:25 AvalonEdit\Documentation\Media\RenderingPipeline.png
文件 10086 2012-11-12 10:25 AvalonEdit\Documentation\Media\VisualTree.png
文件 86390 2012-11-12 10:25 AvalonEdit\Documentation\Media\WelcomeScreenshot.png
文件 3943 2012-11-12 10:25 AvalonEdit\ICSharpCode.AvalonEdit\AvalonEditCommands.cs
文件 21763 2012-11-12 10:25 AvalonEdit\ICSharpCode.AvalonEdit\ICSharpCode.AvalonEdit.csproj
文件 596 2012-11-12 10:25 AvalonEdit\ICSharpCode.AvalonEdit\ICSharpCode.AvalonEdit.snk
文件 35445 2012-11-12 10:25 AvalonEdit\ICSharpCode.AvalonEdit\TextEditor.cs
............此处省略2562个文件信息
评论
共有 条评论