Answers for "dot net comments in code"

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

c# comment

//This Is A Comment
//Comments don't change what
//Happens in the code, but they
//Help you understand your own code,
//So you can make more changes.

//To make a comment, use a "//" then 
//Whatever your comment is.
Posted by: Guest on July-16-2021

C# Answers by Framework

Browse Popular Code Answers by Language