While I can’t say casting is a way to go in C#, it’s a rather common operation. It’s good to know there is more than one way of doing that and the best way depends on current circumstances. Explicit Cast I’m assuming you know what casting is but just to be clear, I mean changing object type like casting an int to long or some kind of JSON to string. It’s common, it happens all the time and sometimes we just need to do that. Let’s start with the most basic case of explicit casting.
Daj się poznać 2017 2726 dni, 8 godzin, 34 minuty temu 82 źrodło rozwiń
Witam Ostatnio modyfikując mój kod stanąłem przed problemem rzutowania obiektu typu MembershipUser(z namespaca System.Web.Security) na mój własny typ UserDTO. Klasa UserDTO nie wyróżnia się niczym specjalnym i wygląda następująco public class UserDTO : UserBase { public string Id { get; set; } public string Email { get; set; } public string DisplayName { get; set; } } Podejściem dość oczywistym w takim przypadku jest utworzenie odpowiedniego konstruktora w klasie...
W C# skorzystać możemy z operatorów konwersji – explicit (jawnych) oraz implicit (niejawnych). Co nam to daje? To co tygryski lubią najbardziej – wygodę i prostotę użytkowania ;) Definiując strukturę, wartość inicjalizujemy głównie przez konstruktor, np:(...)