Posts by Márcio Rigues • 26 points
3 posts
-
0
votes1
answer663
viewsA: Views do not recognize @model, @Viewbag, @Viewdata
This is because your project is not recognizing the Razor library. Via Nuget, check which version of Razor is installed in your project. Then access the files Packages.config and Web.config and…
-
1
votes2
answers62
viewsA: Is there a method of merging equal items into a var list in LINQ in C#?
Before the .Tolist();, add .Distinct(), as an example below: List<int> semNumerosRepetidos = numeros.Distinct().ToList();
-
0
votes1
answer453
viewsA: How to hide email address
Instead of using the CC method, use Bcc, it is the CCO (With Hidden Copy) field in English. In practice: instead of using the _mailMessage.CC.Add(Email address) use the _mailMessage.Bcc.Add(Email…