tags:

views:

129

answers:

1

I came across this snippet of code on MSDN:

entityBuilder.Metadata = @"res://*/AdventureWorksModel.csdl|
                            res://*/AdventureWorksModel.ssdl|
                            res://*/AdventureWorksModel.msl";

What does the res://*/ mean and how does it work? I think it has to do with resource files, but I am not sure.

Google is no help because of the punctuation.

+2  A: 

You've got the right idea:

res protocol

EDIT: Incidentally, you should check searchdotnet for technical searches, it still uses google but filters on .net stuff.

Scott