This is a full-length session of microservices development using Microsoft .Net Core WebAPI(C#.Net) and Mongo DB as backend. The session presentation available below The source code of session available in GitHub , feel free to share your feedback and contribute to this project Full session video Prerequisites for development MongoDB (you can download from here ) Visual Studio 2019 DotNet Core 3.1.x SDK Postman (for API Testing)
After long time we are with the Resource Explorer. This is verymuch usefull for the resource management in the Application/DLL. Purspose You are having the images/icon in other dll then you can load and use that particular image/icon using the below concept Source Code: public partial class frmAssemblyHandling : Form { public frmAssemblyHandling() { InitializeComponent(); } private void btnSelectDLL_Click( object sender, EventArgs e) { //the required resources to filter from the available ArrayList arImageFilter = new ArrayList (); arImageFilter.AddRange( new string [] { ".png" , ".ico" , ".bmp" , ".png" }); OpenFileDialog fd = new OpenFileDialog (); fd.Filter = "DLL Files (*.Dll)|*.dll|Application Files (*.exe)|*.exe" ;