HomeCSharpC# Error CS1599 – The return type of a method, delegate, or function pointer cannot be ‘{0}’

C# Error CS1599 – The return type of a method, delegate, or function pointer cannot be ‘{0}’

C# Error

CS1599 – The return type of a method, delegate, or function pointer cannot be ‘{0}’

Reason for the Error & Solution

Method or delegate cannot return type ‘type’

Some types in the .NET class library, for example, , and cannot be used as return types because they can potentially be used to perform unsafe operations.

The following sample generates CS1599:

// CS1599.cs  
using System;  
  
class MyClass  
{  
   public static void Main()  
   {  
   }  
  
   public TypedReference Test1()   // CS1599  
   {  
      return null;  
   }  
  
   public ArgIterator Test2()   // CS1599  
   {  
      return null;  
   }  
}  

Leave a Reply

You May Also Like

This C# program calculates and displays an upper triangular matrix based on user input. Problem Statement: The program takes the...
This C# program serves as a demonstration of bitwise operators, which are fundamental operators used for manipulating individual bits in...
This C# program is designed to interchange or swap the columns of a matrix. A matrix is a two-dimensional array...