Share variables between projects

后端 未结 5 849
天命终不由人
天命终不由人 2021-01-05 22:04

I have a solution with some projects. One of this projects is the one I\'ve defined as main, also his class has a main Method.

Inside this class, I\'ve defined some

5条回答
  •  春和景丽
    2021-01-05 22:50

    You need to add a using directive at the top of project B's file:

    using Cobra;
    

    And add project A as a reference in project B.

提交回复
热议问题