python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
How to embed Nuget in WPF Application
I have a WPF Client application project (.Net Framework v4.5.2+). There are no pre-requisites at Client end to use the product. All the external references are stored in a folder and MSI installer cop...
RDV
Votes: 0
Answers: 1
.Net framework upgrade from 4 to 4.5.2
We currently have a Winforms application targeting .NET Framework 4.
When trying to upgrade to 4.5.2 we get an error:
The type 'Object' is defined in an assembly that is not referenced. You must add ...

Huzan Toorkey
Votes: 0
Answers: 0
Alternative to nameof in C# 5.0 (NET Framework 4.5)
I have an Addin in which I do calls to public method within a DLL which is mine.
I have a very weird scenario where I need dynamically (not hardcoded) to get the name of the DLL method I am being call...

Willy
Votes: 0
Answers: 2
Format integer to be at least X digits by adding trailing zeroes
Is there a way to format an integer to be at least X digits by adding trailing zeroes? Such that with X being 4 I would get:
4 -> 4000
58 -> 5800
372 -> 3720
5432 -> 5432
12345678 -> 12...
user1151923
Votes: 0
Answers: 1