[Mono-dev] GSoC 2015 - Integrate Reference Sources code into Mono

2015-03-04 Thread Lihini Senanayake
Hello everyone, I'm a senior computer science undergraduate from University of Moratuwa, Sri Lanka. I would like to contribute to the above mentioned project in GSoc 2015. I've heard about the Mono project before, but I never got a chance to work with it. A little research on current

Re: [Mono-dev] GSoC 2015 - Integrate Reference Sources code into Mono

2015-03-04 Thread Bernie Schoch
I'm relatively new to the project also. Here is some info that was passed on to me to get started: If you haven't already, please be sure to see http://www.mono-project.com/community And in particular http://www.mono-project.com/community/contributing Amongst other things, the above tells you

[Mono-dev] Google Summer of Code 2015

2015-03-04 Thread Spo1ler
Good day everyone. When I checked Google SoC organizations page I've immediately noticed that there was a project connected with porting some of the code that Microsoft outsourced to work with Mono. I'm very interested in low-level aspects of developing for .NET Platform, and even though I've

Re: [Mono-list] Could not lookup zero argument constructor for class Ninject.StandardKernel

2015-03-04 Thread mimi
@RobertJordan: After receiving your msg, I did more analyses. Here is the c# code: namespace ClassLibrary1 { public class Class1 { Class2 mClass2 = new Class2(); public Class1() { Console.WriteLine(Class1 constructor called!\n); } public void GreetPeople(string

Re: [Mono-list] Could not lookup zero argument constructor for class Ninject.StandardKernel

2015-03-04 Thread Robert Jordan
On 03.03.2015 21:57, mimi wrote: I embedded Mono to my c++ code and tested with basic stuffs (invoke c# methods wiht parameters and from multiple DLLs). I am trying to add Ninject stuff to my code (https://github.com/ninject/Ninject/blob/master/src/Ninject/StandardKernel.cs). The following is