Answers for "how to add comments in c#"

C#
2

code for posting comments using mvc c#

<textarea rows="3" placeholder="Your Comment" id="Body" v-model="comment.Body" class="form-control">
                                                             
                                                         @ViewBag.remark 
                                                         @Model.CreatedDate
                                                         @*@Html.DisplayNameFor(model => model.CreatedDate)
                                                         @Html.DisplayNameFor(model => model.DocId)*@
                                                        

                                                     </textarea>
Posted by: Guest on April-07-2020
1

Commenting on C#

//How to comment on C#

//Single Line

/*Multi
Line
Comment */

//Thats how you comment
Posted by: Guest on October-25-2021

Code answers related to "how to add comments in c#"

C# Answers by Framework

Browse Popular Code Answers by Language