Exemple #1
0
 static public ILStatement CreateILCalculate(this ILValue item)
 {
     return(item.IfNotNull(i => new ILCalculate(i)));
 }
Exemple #2
0
 static public void RenderText_ValueEX(this ILValue item, ILTextCanvas canvas)
 {
     item.IfNotNull(i => i.RenderText_Value(canvas), () => canvas.AppendToLine("?????"));
 }