About 597,000 results
Open links in new tab
  1. Functions in C# with Examples - Dot Net Tutorials

    In this article, I am going to discuss Functions in C# with Examples. Please read our previous article, where we discussed Goto Statement in C# with Examples. As part of this article, you …

  2. Develop C# class library functions using Azure Functions

    Understand how to use C# to develop and publish code as class libraries that run in-process with the Azure Functions runtime.

  3. C# Library Functions - Programiz

    Returns substrings of a string. Returns a substring from the given string. Compares two strings in the alphabetical order. Replace all matching characters/text in the string. Checks whether the …

  4. Creating and Using DLL (Class Library) in C# - GeeksforGeeks

    Jan 4, 2023 · Class Library makes it convenient to use functionalities by importing DLL inside the program rather than redefining everything. So, Let's make our own class library in C#. Class …

  5. c# - Load dynamic library and use functions inside the library

    Feb 17, 2020 · In C#, I am using an external dll, using loadLibrary, like this: [DllImport("kernel32", CharSet= CharSet.Auto, SetLastError=true)] private static extern IntPtr LoadLibrary(string …

  6. Functions - The complete C# tutorial

    To call a function, you simply write its name, an open parenthesis, then parameters, if any, and then a closing parenthesis, like this: Here is an example of our DoStuff () function: …

  7. C# Functions - C# Tutorial

    By definition, a function is a reusable named block of code that does one task. For example, the following defines the SayHi() function that outputs the "Hi" message to the console: void SayHi …

  8. Functions in C# with Examples - AspDotnetHelp.com

    Dec 26, 2023 · In C#, built-in functions are pre-defined methods provided by the .NET Framework library to perform common tasks. These methods help developers avoid re-inventing the wheel …

  9. Building A .NET Core Class Library - C# Corner

    In this tutorial, we will learn how to build a class library using .NET standard 2.0. We will also see how to call a class library from a console app. What A Class Library Is. Code reusability is one …

  10. 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.

Refresh