/// <summary> /// Indents then write provided string followed by newline /// </summary> /// <param name="self"></param> /// <param name="str"></param> /// <param name="ctx"></param> public static void IndentAndWriteLine(this ICodeWriter self, string str, Context ctx) { self.IndentAndWrite(str, ctx); self.NewLine(); }