scac
scac
CC#
Created by scac on 8/24/2023 in #help
❔ Debugging a hello world console project with c# dev kit fails
55 replies
CC#
Created by scac on 2/22/2023 in #help
❔ DateOnly is not available in .net6.0 for me
I had to add these to make it available:
<FrameworkReference Include="Microsoft.NETCore.App" />
<PackageReference Include="System.Runtime" Version="4.3.1" />
<FrameworkReference Include="Microsoft.NETCore.App" />
<PackageReference Include="System.Runtime" Version="4.3.1" />
But now I'm getting warnings that these aren't necessary because they're implicitly referenced. What could be happening that I need to add them?
112 replies
CC#
Created by scac on 1/30/2023 in #help
✅ Get property from generic type?
I have a method with a generic type. Two objects of different classes may be passed to it. How do I access a property in these objects (it has the same name in both objs)? Been trying with reflection but I'm getting a Object reference not set to an instance of an object. C# GetProperty()
17 replies