npm install @syncfusion/ej2-base --save
For client-side web apps, the process is different. You do not register a key in C#; you configure it using registerLicense from the @syncfusion/ej2-base package. syncfusion trial license key
Remember: the key is free, easy to use, and risk-free. Use this period to explore advanced features like the Syncfusion DataGrid, PDF Viewer, or Excel Library. When the trial ends, you will have the data needed to decide if a commercial license (or a community license) is the right investment for your development future. easy to use
// Register your trial license key here SyncfusionLicenseProvider.RegisterLicense("YOUR_TRIAL_KEY_HERE"); var app = builder.Build()
Place it in App.xaml.cs inside the Application_Startup event or the constructor.
builder.Services.AddControllersWithViews(); var app = builder.Build(); // ... rest of app