2 Mayıs 2015 Cumartesi

Metnin içindeki değerleri listeden replace etme

                string htmlFile =
                    File.ReadAllText(
                        HttpContext.Current.Server.MapPath("~/Views/Shared/Mail/_RememberPassword.html"));
                var htmlData = new Dictionary<string, string>();
                htmlData.Add("{resetLinkId}", "link");
                htmlFile = htmlData.Aggregate(htmlFile, (current, item) => current.Replace(item.Key, item.Value));

Hiç yorum yok:

Yorum Gönder

.net 6 mapget kullanımı

 app.UseEndpoints(endpoints => {     endpoints.MapGet("/", async context =>     {         var response = JsonConvert.Seriali...