Expandable code snippet
-
Something like:
<pre lang"cs">
public void MyMethod()
{
<sub>
A();
B();
</sub>
C();
D();
<sub>
E();
F();
</sub>
}Results to:
public void MyMethod()
{-
B(); -
}
And after clicking/exapnding both +:
public void MyMethod()
{A() B(); C(); D();
- E()
F();
}
Cheers, Jani Giannoudis Meerazo.com - Resource Sharing Made Easy | Co-founder
-
-
Something like:
<pre lang"cs">
public void MyMethod()
{
<sub>
A();
B();
</sub>
C();
D();
<sub>
E();
F();
</sub>
}Results to:
public void MyMethod()
{-
B(); -
}
And after clicking/exapnding both +:
public void MyMethod()
{A() B(); C(); D();
- E()
F();
}
Cheers, Jani Giannoudis Meerazo.com - Resource Sharing Made Easy | Co-founder
Doesn't work for me.
Binding 100,000 items to a list box can be just silly regardless of what pattern you are following. Jeremy Likness
-
-
Doesn't work for me.
Binding 100,000 items to a list box can be just silly regardless of what pattern you are following. Jeremy Likness
Same here. But that is because CP doesn't support it yet, and the OP is a suggestion to add that functionality (Which, in my opinion, will be rather useful) (Please ignore this if you were joking)
public class SysAdmin : Employee
{public override void DoWork(IWorkItem workItem) { if (workItem.User.Type == UserType.NoLearn){ throw new NoIWillNotFixYourComputerException(new Luser(workItem.User)); }else{ base.DoWork(workItem); } }
}