How can we differentiate c# and silverlight utility classes and ui? [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 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)

Related

Need help understanding MEF [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 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/

How to implement SQLite in C# [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.
Hi guys, my project is about exams, So i Have to ask questions and store all exam done by user, I wanna to use SQLite but i'm wondering dose the user have to install any tool
to read from DB ? and if not how can i implement the DB and use it and what library i have to use ?
Thanks lot
PS:Any Suggestion for my project will be useful.
You can use http://sqlite.phxsoftware.com/ to interface with SQLite from c#
SQLite manager is a good tool to create/view/edit/etc your database: https://addons.mozilla.org/en-us/firefox/addon/sqlite-manager/

How can i design my own control in VS 2010 from scratch? [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 wish to design my own control in C# for visual studio.I have followed the link Create Custom Control and would like to see some more which involves making control from scratch
A simple search on StackOverflow and Google are a great place to start.
If you are wanting to create a control that handles its own rendering, you may want to look into using the objects in the System.Drawing namespace (namely System.Drawing.Graphics).

Pattern for writing Chart Components [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 have to write a chart component from scratch in Silverlight 3 and wonder if anybody knows if there are any design patterns, guidelines, tutorials that can help with the process?
Take a look a the Silverlight Toolkit. It is open-source and has chart controls written by Microsoft. This is probably the closest thing to design guidelines you can get.

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.

Categories