public ArtDevBCSDescriptor(string DescriptorName, DirectionType directionType, ArtDevBCSMethod BCSMethod, ArtDevBCS BCS) { // Create the return parameter. this.BCS = BCS; this.BCSMethod = BCSMethod; this.parameter = this.BCSMethod.method.Parameters.Create( DescriptorName, true, directionType); }
public ArtDevBCSMethod(Method method, ArtDevBCS BCSContext) { this.method = method; this.BCS = BCSContext; }