You create a Windows Workflow Foundation application by using Microsoft .NET Framework 3.5.
The application contains the following code segment.
[ExternalDataExchange]
public interface IOrderService {
bool CreateOrder(string customerId);
bool CancelOrder(string orderId);
bool SuspendOrder(string ordered);
}
You need to create workflow activities that correspond to each operation in the IOrderService interface. You also need to ensure that the activities use the C# programming language.
Which utility should you use?
A.
csc.exe
B.
vbc.exe
C.
wca.exe
D.
wfc.exe