public ParameterHintingEngine(Workspace workspace, IParameterHintingDataFactory factory) { if (workspace == null) throw new ArgumentNullException("workspace"); if (factory == null) throw new ArgumentNullException("factory"); this.workspace = workspace; this.factory = factory; }
public ParameterHintingEngine(Workspace workspace, IParameterHintingDataFactory factory) { if (workspace == null) { throw new ArgumentNullException("workspace"); } if (factory == null) { throw new ArgumentNullException("factory"); } this.workspace = workspace; this.factory = factory; }