/// <summary> /// Determines whether [is value type] [the specified type name]. /// </summary> /// <param name="TypeName">Name of the type.</param> /// <returns> /// <c>true</c> if [is value type] [the specified type name]; otherwise, <c>false</c>. /// </returns> public bool IsValueType(string TypeName) { return(CodeGenerationUtils.IsValueType(TypeName)); }
/// <summary> /// Liste des paramètres /// </summary> /// <param name="op">The op.</param> /// <returns></returns> public string GetParametersList(Operation op) { return(CodeGenerationUtils.GetParametersList(op)); }
/// <summary> /// Formate les commentaires en mettant les caractères "///" devant chaque ligne /// </summary> /// <param name="indent">Indentation des lignes</param> /// <param name="comment">Commentaire</param> /// <returns></returns> public string FormatComment(string indent, string comment) { return(CodeGenerationUtils.FormatComment(indent, comment)); }
/// <summary> /// Définition des paramètres avec leurs types /// </summary> /// <param name="op">The op.</param> /// <returns></returns> public string GetParametersDefinition(Operation op) { return(CodeGenerationUtils.GetParametersDefinition(op)); }