Unity.IL2CPP.Formatter.Comment C# (CSharp) Method

Comment() public static method

public static Comment ( string str ) : string
str string
return string
        public static string Comment(string str)
        {
            if (!CodeGenOptions.EmitComments)
            {
                return string.Empty;
            }
            return ("/* " + str + " */");
        }