This is how Drew makes jambalaya.
- 2 tbsp. olive oil
- 3 lbs. (~1.5kg) chicken pieces (I use bone-in thighs)
- 1 cup all-purpose flour
- 1 lb.(~500g) andouille sausage, sliced
| public class BaseClass | |
| { | |
| protected BaseClass() | |
| { | |
| } | |
| } | |
| public class BypassClass : BaseClass | |
| { |
| public class BaseClass | |
| { | |
| protected BaseClass() | |
| { | |
| } | |
| } | |
| [TestFixture] | |
| public class Foo2 |
| //the first context will be skipped in the foreach because the enumeration will be moved forward 1 by the allContexts.First(). Is this intentional | |
| private string GetDestPath(ResolutionContext context) | |
| { | |
| var allContexts = GetContexts(context).Reverse(); | |
| var builder = new StringBuilder(allContexts.First().DestinationType.Name); | |
| foreach (var ctxt in allContexts) |
| public class Person : ReactiveObject | |
| { | |
| public string FamilyName | |
| { | |
| get { return this.<FamilyName>k__BackingField; } | |
| set | |
| { | |
| if (!string.Equals(this.<FamilyName>k__BackingField, value)) | |
| { | |
| base.raisePropertyChanging("FamilyName"); |
| public class Person : MyBaseClass | |
| { | |
| public string Name { get; set; } | |
| } | |
| public class MyBaseClass : GalaSoft.MvvmLight.ViewModelBase | |
| { | |
| protected virtual void Broadcast(object oldValue, object newValue, string propertyName) | |
| { | |
| var message = new PropertyChangedMessage(this, this, oldValue, newValue, propertyName); |
| Exception Info: Stream was not readable. | |
| at System.IO.StreamReader..ctor(Stream stream, Encoding encoding, Boolean detectEncodingFromByteOrderMarks, Int32 bufferSize, Boolean leaveOpen) | |
| at System.IO.StreamReader..ctor(Stream stream, Boolean detectEncodingFromByteOrderMarks) | |
| at MetroTwit.Extensions.CommonCommands.<>c__DisplayClass85.<>c__DisplayClass8a.<CheckBoon>b__7c() | |
| at System.Windows.Threading.ExceptionWrapper.InternalRealCall(Delegate callback, Object args, Int32 numArgs) | |
| at MS.Internal.Threading.ExceptionFilterHelper.TryCatchWhen(Object source, Delegate method, Object args, Int32 numArgs, Delegate catchHandler) |
| 100 Skips | |
| 20 bench | |
| 20 decline bench | |
| 20 incline bench | |
| 20 shoulder press | |
| 100 Skips | |
| 15 bench | |
| 15 decline bench | |
| 15 incline bench | |
| 15 shoulder press |
| .method public hidebysig instance class [mscorlib]System.Type GetTypeInfoFromInternal() cil managed | |
| { | |
| .maxstack 8 | |
| L_0000: ldtoken [AssemblyToReference]InternalClass | |
| L_0005: call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) | |
| L_000a: ret | |
| } | |
| public class ApplicationController | |
| { | |
| string myProperty; | |
| public string MyProperty | |
| { | |
| get { return myProperty; } | |
| set { | |
| myProperty = value; | |
| MyPropertyChanged(value); | |
| } |