reference

  1. W

    Question How to resolve Dependency Version Issues

    I have c# code that is being run in a script component in SSIS. The code makes a connection to SharePoint Online. I am using Visual Studio 2019. While writing the code, I used NuGet to bring in several reference packages. Working through SSIS causes some craziness because the C# solution is...
  2. M

    Resolved Value types and reference types

    Hi everyone, First question here... If I'm correct, String is a reference datatype, right? See my code below: String nameOne = "Matthew"; String nameTwo = nameOne; nameOne = "Andrew"; In the end, I should expect both nameOne and nameTwo to be Andrew...
  3. P

    Idiomatic snippets

    Hello Developers I set up a website about how one would perform common programming tasks in the most idiomatic form in different languages. It is intended to be didactic, it's open to contributions (like a wiki) and we'd love to have more snippets written in C#. It would hugely help if a few...
Back
Top Bottom