I keep getting the above warning for both ordersubmitted
and lastfillquantity
, however everything seems to be working fine and when i print the the variables they seem to updating correctly.
public partial class Form1 : Form
{
private bool ordersubmitted = false;
private int lastfillquantity;
private void SubmitOrder()
{
int lastfillquantity = e.filled;
ordersubmitted = true
}
}