VS2005 Class Library containing c code? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-08T17:25:14Z http://stackoverflow.com/feeds/question/728197 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/728197/vs2005-class-library-containing-c-code 0 VS2005 Class Library containing c code? zeblar 2009-04-08T01:33:42Z 2009-04-08T14:33:35Z <p>Can a Class Library be built containing c code? If so, how?</p> http://stackoverflow.com/questions/728197/vs2005-class-library-containing-c-code/730290#730290 -1 Answer by Mihai Limbasan for VS2005 Class Library containing c code? Mihai Limbasan 2009-04-08T14:31:27Z 2009-04-08T14:31:27Z <p>If by that you mean whether it's possible to write object oriented code in C, then yes. The first results from Google when searching for Object Oriented Programming in C:</p> <p><a href="http://www.accu.informika.ru/acornsig/public/articles/oop%5Fc.html" rel="nofollow">Object Oriented Programming in C</a></p> <p><a href="http://www.cs.rit.edu/~ats/books/ooc.pdf" rel="nofollow">Object-Oriented Programming with ANSI C (PDF)</a></p> <p><a href="http://barracudaserver.com/WP/DeviceControl/OOIntro.html" rel="nofollow">ANSI C and object-oriented programming</a></p> <p>I'm sure you can find the rest of the few hundred different papers on the topic.</p> <p>A good example is the <a href="http://library.gnome.org/devel/glib/" rel="nofollow">GLib library</a>.</p>