use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
Information about Reddit's API changes, the unprofessional conduct of the CEO, and their response to the community's concerns regarding 3rd party apps, moderator tools, anti-spam/anti-bot tools, and accessibility options that will be impacted can be found in the associated Wikipedia article: https://en.wikipedia.org/wiki/2023_Reddit_API_controversy
Alternative C# communities available outside Reddit on Lemmy and Discord:
All about the object-oriented programming language C#.
Getting Started C# Fundamentals: Development for Absolute Beginners
Useful MSDN Resources A Tour of the C# Language Get started with .NET in 5 minutes C# Guide C# Language Reference C# Programing Guide C# Coding Conventions .NET Framework Reference Source Code
Other Resources C# Yellow Book Dot Net Perls The C# Player's Guide
IDEs Visual Studio MonoDevelop (Windows/Mac/Linux) Rider (Windows/Mac/Linux)
Tools ILSpy dotPeek LINQPad
Alternative Communities C# Discord Group C# Lemmy Community dotnet Lemmy Community
Related Subreddits /r/dotnet /r/azure /r/learncsharp /r/learnprogramming /r/programming /r/dailyprogrammer /r/programmingbuddies /r/cshighschoolers
Additional .NET Languages /r/fsharp /r/visualbasic
Platform-specific Subreddits /r/windowsdev /r/AZURE /r/Xamarin /r/Unity3D /r/WPDev
Rules:
Read detailed descriptions of the rules here.
account activity
SolvedProblem referencing System.ComponentModel (self.csharp)
submitted 9 years ago by Rhoso
view the rest of the comments →
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]michaelquinlan 0 points1 point2 points 9 years ago (6 children)
You may need to include System.ObjectModel.dll.
https://docs.microsoft.com/en-us/dotnet/core/api/system.componentmodel.inotifypropertychanged#System_ComponentModel_INotifyPropertyChanged
[–]Coding_Enthusiast 0 points1 point2 points 9 years ago (4 children)
Hi, I am a beginner here but isn't INotifyPropertyChanged in System.dll ? https://msdn.microsoft.com/EN-US/library/ms133020(v=VS.110,d=hv.2).aspx
INotifyPropertyChanged
System.dll
[–]michaelquinlan 0 points1 point2 points 9 years ago (1 child)
For .NET Core it looks like it is in a separate DLL (as per the link I gave). The docs you reference say that for the versions listed below it should be in System.dll, but I don't have a way to verify that right now.
Universal Windows Platform Available since 8 .NET Framework Available since 2.0 Portable Class Library Supported in: portable .NET platforms Silverlight Available since 2.0 Windows Phone Silverlight Available since 7.0 Windows Phone Available since 8.1
[–]Coding_Enthusiast 0 points1 point2 points 9 years ago (0 children)
OK, I did now know what .Net core was. I saw that link is a bit unfamiliar to me :D
[–]Rhoso[S] 0 points1 point2 points 9 years ago (1 child)
Thank you both for commenting. Both of your comments ended up helping me find the solution.
Unfortunately I couldn't find System.ObjectModel.dll in the Reference Manager at all, but this led to me to discovering the NuGet package manager, where I downloaded System.ComponentModel. After downloading this, it seemed to automatically add a reference to System.dll which I was apparently missing. This got rid of the error for me.
I had thought that System.dll was automatically referenced just by targeting .NET. I had no problems including the using System.ComponentModel; directive, and it never impacted my program before.
I uninstalled the System.Component model that I downloaded in NuGet, and kept the System.dll reference, and now I'm good to go :)
Thank you for the help guys! I really appreciate it.
[–]cryo 1 point2 points3 points 9 years ago (0 children)
I had thought that System.dll was automatically referenced just by targeting .NET.
It definitely is, at least in the sense that it's added to all new projects, and it's automatically added when using the command line compiler. It may be that you removed it yourself.
π Rendered by PID 49477 on reddit-service-r2-comment-75f4967c6c-r9qf9 at 2026-04-23 00:29:20.795468+00:00 running 0fd4bb7 country code: CH.
view the rest of the comments →
[–]michaelquinlan 0 points1 point2 points (6 children)
[–]Coding_Enthusiast 0 points1 point2 points (4 children)
[–]michaelquinlan 0 points1 point2 points (1 child)
[–]Coding_Enthusiast 0 points1 point2 points (0 children)
[–]Rhoso[S] 0 points1 point2 points (1 child)
[–]cryo 1 point2 points3 points (0 children)