Welcome to Jonathan Parker's Blog Sign in | Join | Help

Browse by Tags

All Tags » .NET   (RSS)
To install a dll in the GAC on the post-build event use this: "C:\Program Files\Microsoft SDKs\Windows\v6.0A\bin\gacutil.exe" /f /i $(TargetPath) This requires the Windows SDK obviously. Read More...
Here's a snippet of code for extracting a resource from the current assembly. private static XmlDocument ExtractEmbeddedResource(string name) { Assembly executingAssembly = Assembly.GetExecutingAssembly(); string resourceName = executingAssembly.GetName().Name Read More...
I've signed up fro the SQL Server Data Services (MSSDS) and have started to play around with the API. It's quite nice and simple. Here's an example of how to get your data in the cloud with MSSDS. Add a Web Reference to any .NET 2.0+ project. I'll be Read More...
So many times I have been shocked by the thoughtless lack of imagination in the computer world. On of them is clipboard . However the column must be in the top 10. Is text editing still an unsolved problem? Here's the problem: You get a bunch of data Read More...
The BCL Team have confirmed via their blog that they will be removing some of the BCL types from Silverlight 1.1 The following types will be completely removed: ArrayList BitArray CaseInsensitiveComparer CaseInsensitiveHashCodeProvider CollectionBase Read More...
More Posts Next page »