コード例 #1
0
        private static void PrependGeneratedHeader(UTinyCodeWriter writer, string name)
        {
            var builder = new StringBuilder();

            builder.AppendLine($"/**");
            builder.AppendLine($" * {UTinyConstants.ApplicationName.ToUpperInvariant()} GENERATED CODE, DO NOT EDIT BY HAND");
            builder.AppendLine($" * @project {name}");
            builder.AppendLine($" */");
            builder.AppendLine();
            writer.Prepend(builder.ToString());
        }