Schema.net - How to build using VB
问题 I'm trying to implement Structured Data on my website. I pulled Schema.net into my Project, and am trying to implment. I'm completely confused on how to implement some data types and am looking for help. Here's the Schema website, with examples in C#: https://rehansaeed.com/ I am able to setup several tags in VB: Dim website As New WebSite() website.AlternateName = "An Alternative Name" website.Version = "1" website.Headline = "title" website.Genre = "Music" dim jsonLd = website.ToString() My