Em có một câu hỏi là: Em có 1 class có 1 static method( method2) với kiểu trả về là string. Trong một class khác em có 1 method(method1) cũng có kiểu trả về là string và method1 return method2. Em có chạy thử và nó chạy thành công nhưng em tìm trên GG không thấy tài liệu nào nói về 1 method có thể return 1 method khác cùng kiểu trả về cả. Mọi người giúp em giải thích vấn đề này được không ạ
using System;
public class Response
{
public string Message { get; set; }
public static string displayData(string data)
{
return data;
}
}
public class A
{
public string Getdata(string data)
{
return Response.displayData(data);
}
}
public class Program
{
public static void Main()
{
A a = new A();
string response;
response = a.Getdata("This is my data");
Console.WriteLine("Method in Response class returns: " + response);
}
}
=> Đây là kết quả chạy ra