11/05/2018, 10:08
Giải thích hộ em khi nào thì xài hàm dựng, và cho em 1 ví dụ cụ thể ak
ai chỉ dùm em cách xài this và giải thích hộ em khi nào thì xài hàm dựng, và cho em 1 ví dụ cụ thể ak using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ConsoleApplication1 { class Library { ...
ai chỉ dùm em cách xài this và giải thích hộ em khi nào thì xài hàm dựng, và cho em 1 ví dụ cụ thể ak
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConsoleApplication1
{
class Library
{
public int a;
public int b;
public Library(int a,int b){
this.a=a;
this.b=b;
}
}
}
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConsoleApplication1
{
class Library
{
public int a;
public int b;
public Library(int a,int b){
this.a=a;
this.b=b;
}
}
}