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 Foo | |
{ | |
class Bar | |
{ | |
} | |
override public Foo () | |
{ | |
} | |
} |
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
git clone git://github.com/jbevain/cecil.git;mv cecil ../Mono.Cecil |
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
@@ -64,44 +64,62 @@ | |
this.DecompileMethodBodies = true; | |
} | |
- public static bool MemberIsHidden(MemberReference member, DecompilerSettings settings) | |
+ public static bool MemberIsHidden (MemberReference member, DecompilerSettings settings) | |
{ | |
MethodDefinition method = member as MethodDefinition; | |
if (method != null) { | |
if (method.IsGetter || method.IsSetter || method.IsAddOn || method.IsRemoveOn) |
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
------ | |
Marek | |
Only: | |
c# binding, intellisense, editor, debugger, project management, unit test, semantic highlighting | |
throw out: | |
version control, all options, refactorings, all stuff expect the stuff above, most/all pads | |
------ |
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 ClassName | |
{ | |
public int Foo { get; set; } | |
} | |
class MainClass | |
{ | |
void Method () | |
{ |
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 MainClass | |
{ | |
public void FooBar () | |
{ | |
if (true) { | |
string str = "foo"; | |
} | |
} | |
} |
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
--- /home/mike/work/monodevelop/main/src/core/Mono.Texteditor/Mono.TextEditor/Gui/GtkWorkarounds.cs (Basis) | |
+++ /home/mike/work/monodevelop/main/src/core/Mono.Texteditor/Mono.TextEditor/Gui/GtkWorkarounds.cs (Arbeitskopie) | |
@@ -446,9 +446,12 @@ | |
modifier &= ~Gdk.ModifierType.LockMask; | |
//fully decomposed | |
- TranslateKeyboardState (evt.HardwareKeycode, Gdk.ModifierType.None, 0, | |
- out keyval, out effectiveGroup, out level, out consumedModifiers); | |
- accelList.Add (new KeyboardShortcut ((Gdk.Key)keyval, FixMacModifiers (modifier, grp) & accelMods)); | |
+ TranslateKeyboardState (evt.HardwareKeycode, Gdk.ModifierType.None, 0, out keyval, out effectiveGroup, out level, out consumedModifiers); |
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 System; | |
using System.Collections.Generic; | |
public class Bar : List<string> | |
{ | |
public object Test { get; set; } | |
} | |
class Foo | |
{ |
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 Test { | |
string GetName () | |
{ | |
List<string>; | |
} | |
} |
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 System; | |
namespace TestConsole | |
{ | |
class Test | |
{ | |
protected class Foo | |
{ | |
public int Bar = 0; | |
} |