About 1,030,000 results
Open links in new tab
  1. Documentation comments - C# language specification

    Feb 21, 2025 · In source code files, comments having a certain form can be used to direct a tool to produce XML from those comments and the source code elements, which they precede. Comments using such syntax are called documentation comments.

  2. Functions in C# with Examples - Dot Net Tutorials

    As part of this article, you will understand what methods are and their type and how to create and call functions in C# with Examples. What are the Functions of C# Language? A function is a group of related instructions that performs a specific task. It can be a small or big task, but the function will perform that task completely.

  3. Auto generate function documentation in Visual Studio

    Right-click on the function, select "Document this" and. becomes. /// Finds the foo. (yes, it is all autogenerated). It has support for C#, VB.NET and C/C++. It is per default mapped to Ctrl + Shift + D. Remember: you should add information beyond the method signature to the documentation. Don't just stop with the autogenerated documentation.

  4. C# Tutorial (C Sharp) - W3Schools

    Our "Try it Yourself" editor makes it easy to learn C#. You can edit C# code and view the result in your browser. Console.WriteLine("Hello World!"); } } } Click on the "Run example" button to see how it works. We recommend reading this tutorial, in the sequence listed in the left menu.

  5. C# Functions / Methods Tutorial With Code Examples - Software …

    Apr 1, 2025 · This Tutorial Explains What Are Functions in C# Programming with Simple Examples. You Will Also Learn The Basic Differences Between Functions And Methods.

  6. C# Documentation: A Start to Finish Guide - SubMain Blog

    Oct 15, 2019 · We’ll show you a step-by-step guide that will walk you through the necessary steps you need to take to create documentation for your C# code. You’ll start by adding documentation to your code using special XML comments and end by seeing how to generate rich documentation created from these comments.

  7. Functions - The complete C# tutorial

    Functions. A function allows you to encapsulate a piece of code and call it from other parts of your code. You may very soon run into a situation where you need to repeat a piece of code, from multiple places, and this is where functions come in. In C#, they are basically declared like this: <visibility> <return type> <name>(<parameters ...

    Missing:

    • Document

    Must include:

  8. C# Function Documentation and Comments - dotnetustad.com

    Function documentation and comments in C# are essential for making your code understandable to both yourself and other developers. They provide explanations, details, and instructions about the purpose and behavior of functions or methods in your code.

  9. C# Functions - C# Tutorial

    A function is a reusable named block of code that does one task. A function can have zero or more parameters and an optional return value. Use the return statement to return a value from a function.

  10. C# Function with Examples - C-Sharp Tutorial

    C# Function with Examples. In C#, a function is a block of code that performs a specific task and can be called from other parts of your program. Functions are a fundamental concept in C# and are often referred to as methods. Functions in C# are …

    Missing:

    • Document

    Must include:

  11. Some results have been removed
Refresh