安装.NET 9 SDK
- 访问 https://dot.net/download 下载安装即可。
- 安装后,执行
dotnet --info或dotnet --version,确认是否正确安装。
安装 VS Code
访问 https://code.visualstudio.com/download 下载安装即可。
安装 VS Code插件
- 安装 C# 相关插件
- 安装 Polyglot Notebooks 插件
Polyglot Notebooks 使用教学
Polyglot Notebook是一个由微软开发的交互式编程环境,它允许用户在同一个笔记本中混合使用多种编程语言,如C#、F#、PowerShell、JavaScript和SQL等。这个工具通过.NET Interactive引擎实现,旨在提高开发者在处理复杂数据分析和机器学习任务时的效率和灵活性。
Polyglot Notebook = 交互式编程笔记本 = Markdown + Coding
创建笔记:
- 使用 Ctrl/Cmd+Shift+P 快捷键,并选中 Polyglot Notebook: Create new blank notebook ,再依次选择文件后缀格式(.dib 或.ipynb),再选择编程语言(C#/F#/等)创建 Ployglot Notebook。
- 直接新建文件,文件后缀设置为 .dib 或 ipynb 即可。再点击
Selector Kernel选择.NET Interactive。
.ipynb VS .dib
.ipynb文件是Jupyter Notebooks引入的交互式Python笔记本文件格式,会存储执行结果,文件大小较大。
.dib文件是Polyglot Notebooks引入的新文件格式,文件相应较小,用于存储代码和文档,但不存储执行结果,易于版本管理。
安装Nuget 包
-
引用 Nuget 包:使用
#r "nuget:<package name>[,<package version>]"命令。举例:●
#r "nuget: Microsoft.SemanticKernel"引入最新已正式发布的包●
#r "nuget: Microsoft.SemanticKernel, *-*"引入最新预发布版本的包●
#r "nuget: Microsoft.SemanticKernel, 1.11.1"引入指定版本的包 -
指定 Nuget 源:使用
#i "nuget: {NugetSource}"命令。举例:#i "nuget:https://nuget.cdn.azure.cn/v3/index.json
// 安装最新Semantic Kernel正式包
#r "nuget: Microsoft.SemanticKernel"
- Microsoft.SemanticKernel, 1.40.1
// 安装指定版本的OpenAI Connectors 正式包
#r "nuget: Microsoft.SemanticKernel.Connectors.OpenAI, 1.40.1"
- microsoft.semantickernel.connectors.openai, 1.40.1
// 安装最新的Plugins预览包
#r "nuget: Microsoft.SemanticKernel.Plugins.Core, *-*"
- Microsoft.SemanticKernel.Plugins.Core, 1.40.1-alpha
定义类
// 定义一个类
public class Person
{
public string FirstName { get; set; }
public string LastName { get; set; }
public int Age { get; set; }
override public string ToString()
{
return $"{FirstName} {LastName} is {Age} years old.";
}
}
var person = new Person
{
FirstName = "John",
LastName = "Doe",
Age = 25
};
Console.WriteLine(person);
person.Display();
引入外部类文件
创建Config 文件夹,并创建EnumHelper类。
注意:在.NET Interactive 环境中不能定义命名空间!!!
using System.ComponentModel;
public class EnumHelper
{
public static string GetDescription(Enum value)
{
var field = value.GetType().GetField(value.ToString());
var attributes = (DescriptionAttribute[])field.GetCustomAttributes(typeof(DescriptionAttribute), false);
return attributes.Length > 0 ? attributes[0].Description : value.ToString();
}
}
// 导入外部文件
#!import Config/EnumHelper.cs
enum DayOfWeek
{
[Description("星期一")]
Monday = 1,
[Description("星期二")]
Tuesday = 2,
[Description("星期三")]
Wednesday = 3,
[Description("星期四")]
Thursday = 4,
[Description("星期五")]
Friday = 5,
[Description("星期六")]
Saturday = 6,
[Description("星期日")]
Sunday = 7
}
var desc = EnumHelper.GetDescription(DayOfWeek.Monday);
desc.Display();
星期一
禁用Warning
有一些正在试用阶段的库需要禁用Warning
using Microsoft.SemanticKernel.Plugins.Core;
#pragma warning disable SKEXP0050
typeof(MathPlugin).Display();
#pragma warning restore SKEXP0050
交互式输入
//交互式输入
using PolyglotKernel = Microsoft.DotNet.Interactive.Kernel;
var input = await PolyglotKernel.GetInputAsync("Pick a number.");
input.Display();
var input2 = await PolyglotKernel.GetPasswordAsync("Pick a pwd.");
input2.Display();
3222

被折叠的 条评论
为什么被折叠?



