F
Fir5tSight
Hi,
I have an existing method as follows:
public void InsertScan(int aDistributionCommonInstanceID)
Now I'll need to add a parameter, so it should look like the following:
public void InsertScan(int aDistributionCommonInstanceID, bool bCore)
I want to make this new parameter OPTIONAL as I don't want to change
any existing code. Could anyone advise me on how?
Thanks!
-Emily
I have an existing method as follows:
public void InsertScan(int aDistributionCommonInstanceID)
Now I'll need to add a parameter, so it should look like the following:
public void InsertScan(int aDistributionCommonInstanceID, bool bCore)
I want to make this new parameter OPTIONAL as I don't want to change
any existing code. Could anyone advise me on how?
Thanks!
-Emily