Tags: C#

Add a DataGrid to Silverlight using C#

Benjamin Perkins C#

I recently completed a project using WPF and along the way I read up some on Silverlight. I was reading that you could simply convert your MainWindow.xaml file to a MainPage.xaml. Of course this depends on the complexity of your MainWindow.xaml file. I believe it is a known fact that programs written for the installation […]

Read More →

How I improved my chatbot

Benjamin Perkins C#

I think a common attribute of a hardcore coder is procrastination. Up to now I have brainstormed my LadyBug but have not done much coding to support the backend. Nonetheless, this is probably my last blog on the design of my #chatbot and will start coding it pretty soon. If you haven’t seen my other […]

Read More →

Using LINQ with Reflection in C#

Benjamin Perkins C#

Reflection is used to read meta data from a .Net assembly. For example, if you what to find all the method inside of a .dll, you can use Reflection to do it. You can also load and execute the method. I find it an interesting concept that we have the capability to search and use […]

Read More →

Data Types in C#

Benjamin Perkins C#

There are some really good descriptions and explanations concerning data types on the internet. However I will add my understanding and comments about them on this website. Just in case you stumble across this page in your search for ultimate C# knowledge.  There are 2 data types. Value Types and Reference Types. I published a […]

Read More →