返回介绍

9.项目设置

发布于 2024-12-29 22:37:17 字数 1273 浏览 0 评论 0 收藏 0

在开始前,我们想告诉你项目的设置要求。

1.打开 Visual Studio,创建一个新的 ConsoleApplication。命名为 ProgrammingBlockchain 。

2.在 SolutionExplorer 中右键打开 Reference ,选择 Manage NuGet Packages…

3.搜索 NBitcoin 并安装。注意:下图仅供参考。实际版本和发布日期因你阅读本书的时间而不同。

4.在 Solution Explorer 中右键打开 ProgrammingBlockchain ,选择 Add ,然后 NewFolder ,命名文件夹为 Chapters 。

5.右键打开 Chapters 并选择 Add 然后 New Class 。命名这个类为 Chapter1 。在本书的其它章节也如此这般做法。

6.打开 Program.cs ,并添加以下代码。

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using System.Text;
using ProgrammingBlockchain.Chapters;

namespace ProgrammingBlockchain
{
    class Program
    {
        static void Main(string[] args)
        {
//Select the chapter here.
            var chapter = new Chapter1();

//call the lesson here.
            chapter.Lesson4();

//this will hold the window open for you to read the output.
            Console.WriteLine("\n\n\nPress enter to continue.");
            Console.ReadLine();
        }
    }
}

7.注意 using ProgrammingBlockchain.Chapters; 被添加到正在使用的区块。

8.这时候,Visual Studio 在抱怨 chapter.Lesson1() 不存在。继续阅读本书,我们将创建它。

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文