コード例 #1
0
ファイル: LabeledOperation.cs プロジェクト: johnhhm/corefx
 public static LabeledOperation Label(string label, Operation item)
 {
     return new LabeledOperation(label, item);
 }
コード例 #2
0
ファイル: LabeledOperation.cs プロジェクト: johnhhm/corefx
 internal LabeledOperation(string label, Operation item)
 {
     _label = label;
     _item = item;
 }