C# *= Math Operator

The binary multiplication assignment operator.

The * operator is predefined for numeric types to do mathmatical multiplication. The *= operator can't be overloaded directly, but user-defined types can overload the * operator

Download Template
Things Used
AmieDD Software
AmieDD Machines and Tools
AmieDD Character
AmieDD Cosplay Fandom

Wiring and Schematics

Code

//C# *= Math Operator
//www.amiedd.com
using System;
class MathClass
{
static void Main()
{
int a = 10;
a *= 6;
Console.WriteLine(a);
}
}

More Tutorials

I make everything with love and a few curse words.