- C# 7 and .NET Core Cookbook
- Dirk Strauss
- 231字
- 2021-07-03 00:11:53
How to do it...
- Create a method called GetShopfloorSpace() that takes three parameters: for the common area space, the building width, and the building length.
public Building GetShopfloorSpace(int floorCommonArea,
int buildingWidth, int buildingLength)
{
}
- We are returning a Building type, so create a class called Building that has a single property called TotalShopFloorSpace.
public class Building
{
public int TotalShopFloorSpace { get; set; }
}
- Our local function will simply take the width and length of the building to calculate the total floor area and then subtract the common area from that to get the usable floor space for shops. The local function will look as follows:
int CalculateShopFloorSpace(int common, int width, int length)
{
return (width * length) - common;
}
- This is where it gets interesting. Add the local function inside the GetShopfloorSpace() method and add the rest of the code in the following code example:
public Building GetShopfloorSpace(int floorCommonArea,
int buildingWidth, int buildingLength)
{
Building building = new Building();
building.TotalShopFloorSpace = CalculateShopFloorSpace(
floorCommonArea, buildingWidth, buildingLength);
int CalculateShopFloorSpace(int common, int width, int length)
{
return (width * length) - common;
}
return building;
}
- In the calling code, inside the static void Main method, call the method as follows:
Chapter1 ch1 = new Chapter1();
Building bldng = ch1.GetShopfloorSpace(200, 35, 100);
WriteLine($"The total space for shops is
{bldng.TotalShopFloorSpace} square meters");
- Run your console application and see the output displayed as follows:

推薦閱讀
- 從零構(gòu)建知識圖譜:技術(shù)、方法與案例
- Mobile Web Performance Optimization
- Photoshop智能手機APP UI設(shè)計之道
- Java Web開發(fā)之道
- Python機器學(xué)習(xí)編程與實戰(zhàn)
- Getting Started with Hazelcast(Second Edition)
- TMS320LF240x芯片原理、設(shè)計及應(yīng)用
- Python從入門到精通(第3版)
- Swift語言實戰(zhàn)晉級
- Python 3 Object:oriented Programming(Second Edition)
- Moodle 3 Administration(Third Edition)
- Enterprise Application Architecture with .NET Core
- C語言程序設(shè)計
- Vue.js項目開發(fā)實戰(zhàn)
- Drools 8規(guī)則引擎:核心技術(shù)與實踐