An object-oriented and type-safe programming language that has its roots in the C family of languages and includes support for component-oriented programming.
Do you mean something like this?
for (int i = 0; i < 5; ++i) {
for (int j = 0; j < i; ++j) {
Console.Write("_");
}
Console.WriteLine("*");
}
Produces:
*
_*
__*
___*
____*