You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
class Program
{
static void Main()
{
var c1 = new C1();
c1++; // IDE0059 Unnecessary assignment of a value to 'c1'
var c2 = new C1();
c2 -= 1; // IDE0059 Unnecessary assignment of a value to 'c2'
}
}
class C1
{
public void operator ++()
{
}
public void operator -=(int i)
{
}
}