Accessing variables from other namespaces

后端 未结 3 1603
无人及你
无人及你 2021-01-12 09:51

I am new to C# and programming in general my question is how do you call a variable that is in a different namespace? if I have this code

public void servic         


        
3条回答
  •  甜味超标
    2021-01-12 10:29

    As a side node, it can be done by adding reference to the assembly in which the public members of another assembly are used. That's what incurred me.

提交回复
热议问题