VS交互窗口中直接引用dll文件
VisualStudio交互窗口中直接引用dll文件
一、调用交互窗口界面

1、#r “类库dll文件”
2、类里使用using + 标准类库名 进行引用
#r "F:\SVN\packages\newtonsoft.json\13.0.1\lib\netstandard2.0\Newtonsoft.Json.dll"
using Newtonsoft.Json;
二、调用界面


1、#r “类库dll文件”
2、类里使用using + 标准类库名 进行引用
#r "F:\SVN\packages\newtonsoft.json\13.0.1\lib\netstandard2.0\Newtonsoft.Json.dll"
using Newtonsoft.Json;
