using System.Collections.Generic;
public String getFullName(){
return fullName + LastName;
public people(String fullName,String LastName){
public int getListSum(List<int> list){
for(int i=0;i<list.Count;i++){
public int getBmi(int height,int weight){
return weight/((height/100)^2);
public String getFullName(people people){
return people.fullName + people.LastName;
public static void Main()
textbox t1 = new textbox();
List<int> list = new List<int> {1,2,3,4,5};
var List=t1.getListSum(list);
var bmi=t1.getBmi(167,55);
textbox people=new textbox();
people p3=new people("AA","DD");
Console.WriteLine(p3.getFullName());