Need help understanding MEF [closed] - c#

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 9 years ago.
I'm trying to understand how to use MEF.
Could someone point me to or provide an example of loading multiple .dlls from a directory.
Each of those dlls will have the same void method. void start().
There are no values that need to be returned.
Also I would need to make sure the .dlls are ment to be in the folder and not try to load/run if they don't belong.
Thanks

You can read this tutorial , it's very simple
link : http://www.codeproject.com/Articles/432069/Simple-MEF-Application-for-Beginners
For inderstand interest of MEF, i suggest you to read article about PRISM WPF Development With MEF
I published article about subject, link : http://aghilasyakoub.wordpress.com/category/mef-managed-extensibility-framework/

Related

C# / .NET built-in interfaces list [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I'm looking for full C# standard interfaces list. I'm almost sure that such topic was posted somewhere on MSDN, but I can't find it. Does anyone has a reference?
im sorry but such doc does not exist...
See, msdn documentation is organized by "namespaces", so... you can see that such document would not fit anywhere... by the way, why would you want that?!? if you compile the documents of each interface in the basics dll (system, text, system.data, linq, etc...) you would have a quite large document that would cause more confusion than "de-confusion", since in diferent namespaces interfaces may have the same name...

How can we differentiate c# and silverlight utility classes and ui? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
any one plz tell me how to differentiate the c# and silverlight interms of utility classes,ui controls(ui rendering) and package deployment?
i need to know all these details anyone plz help me out.
The Silverlight classes offered out-of-the-box are listed on MSDN - as are the various C# class libraries.
Assuming that your question comes from wanting to know which C# classes are not available in Silverlight (quite a few as I remember)

git from a C# application [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
Currently writing a C# application it should do backups using GIT in the background.
I'm looking for projects or examples to do that without showing any GUI or bash shell..
When searching cross by GitSharp - https://github.com/henon/GitSharp.
It seems close to what I've looked for yet it isn't active.. (see the pull req')
Would like to get recommendations for open source projects or source code to do that.
libgit2sharp are C# bindings for libgit2, which the official GitHub for Windows client uses. They should be decent.
Try ngit, it have better codebase but no decent docs

where is csharp source code is used sharepoint [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 12 years ago.
please provide the csharp area in sharepoint. what are the part csharp source is used. how can be document loaded in the sharepoint. whether it can be done through by c sharp.
Almost everything on SP is built into assemblies, so you can't see the C# source. You can use a tool like Reflector to disassemble these assemblies (but they could be obfuscated).
If you want to upload documents through C# have a look at the WebServices. Here's a pretty good tutorial.

Decaptcher C# API? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
I've downloaded the API from their site but it's a .NET 1.0, I converted it to 3.0 and it wont work.
All I need is some documentation on using the .dll.
Not sure how many people have used it but hoping someone can shed a little light onto the subject.
Documentation on using any DLL: http://www.red-gate.com/products/reflector/
Sometimes that is all the documentation you get.
Why don't you use their POST API?
http://poster.decaptcher.com/
Forget about fiddling with their c# API; been there, tried that, and it's easier to just POST the data to the above url.
Check their site for more info (click "Download", scroll to the POST API).

Categories