Forum: C# 6 Days Ago |
| Replies: 2 Views: 131 Your call to Replace is correct, as you can demonstrate by running the following tests (the third one is supposed to be incorrect):
using System;
class Program
{
public static void... |
Forum: C# Nov 2nd, 2009 |
| Replies: 3 Views: 2,393 Simple, yes... but not something I'd allow into production code. See these (http://odetocode.com/Blogs/scott/archive/2004/08/20/401.aspx) links... |
Forum: C# Sep 7th, 2008 |
| Replies: 2 Views: 606 You can't link directly to a COM library; you have to link to a .NET interop library. The VS IDE secretly generates this library for you when you add a COM project reference. Since you're using the... |