Horje
function c# Code Example
c# funtion
public int AddNumbers(int number1, int number2){    int result = number1 + number2;    if(result > 10)    {    return result;    }    return 0;}
c# function
public void SayHello()
{
Console.WriteLine("Hello") ;
}
//as basic as it gets 
//for a function
C# func
//Func is a invokeable container for Mehod or function method 
//that returns something. They can accept inputs based on the generals 
//that you template on and reserve the last general template for the return. 
//If you do not need a return or wish to return nothing check out the Action Class
//example:
Func<string/*Or some other type to return*/> YourFuncProperty
= new Func(()=>{/*do something*/ return "or return what you want";});
//or
Func<string/*Or some other type to return*/> YourFuncProperty
= ()=>{/*do something*/return "or return what you want";};
//for a paramiterized func
Func<int
/*Or some other types followed by others optional comma seperated*/,
string/*Or some other type to return last*/> YourParamitarizedFuncProperty =
  (x/*Each Param will be to the comma seperated types*/)=>
  {/*do some with the inputs*/return $"you entered a {x} or return what you want";};

// you can invloke them by calling their invokes.
string YouReturn = YourFuncProperty.Invoke();
string YouReturn = YourParamitarizedFuncProperty.Invoke(5);
//The last is the basic sycronous way. For a aysnc call uses
YourFuncProperty.BeginInvoke();
YourParamitarizedFuncProperty.BeginInvoke(5);
//however, you will need to begin a await with EndInvoke to get your result after.
string YouReturn = YourFuncProperty.EndInvoke();
string YouReturn = YourParamitarizedFuncProperty.EndInvoke(5);

//You can also fill them with defined methods in a class if you wish, 
//but the signatures must match.
Func<string> YourActionDefinedProperty = YourDefinedMethod;
string YourDefinedMethod()
{
  //do something
  return "or return what you want";
}

//Example of use
public sealed class DataContainer
{
  	//A bit contrived but we will give the ablity to overide the printout 
  	//of the class while still keeping it sealed. See the invoke at ToString.
  	//could be useful in a library or something?
	static func<string> SealedFuncStringOverride;

	DataContainer(datetime Date)
    {
      this.Date = Date;
      
    }
  	public datetime Date {get; private set;}
  	public int Amount {get; private set;}
  	public string Info {get; private set;}
  	public string FirstName {get; private set;}
  
  	//The invoke is used in here.
  	public override string ToString()
   	{
      if(SealedFuncStringOverride!=null)
        return SealedFuncStringOverride.BeginInvoke();
      return base.ToString;
   	}
}
function c#
public int AddNumbers(int number1, int number2)
{
    int result = number1 + number2;
    return result;
}
c# func
// Func<T,TResult>
// example:
Func<int, string> foo = ConvertToString;
private string ConvertToString(int input) {
 	return input.ToString(); 
}
// or
private void Bar(Func<int, string> bar) {
	Console.WriteLine(bar(myInt));
}
function in c#
//function example
using System;
					
public class Program
{
	static void function(){
		Console.WriteLine("I am a function!");
	}
	public static void Main()
	{
		function();
	}
}




Csharp

Related
instantiate prefab unity Code Example instantiate prefab unity Code Example
C# backup sql Code Example C# backup sql Code Example
get file path in .net core from wwwroot folder Code Example get file path in .net core from wwwroot folder Code Example
regex for accepting a file name c# Code Example regex for accepting a file name c# Code Example
get all assemblies c# Code Example get all assemblies c# Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
11