code-conversion

string vs System.String, int vs System.Int32 : another Alias vs Type Name question

Quite often I see source code where language's keyword are replaced with full type names: System.String, System.Int32, System.GUID etc. Moreover, people who do this write complete type names everywhere, making source full of such declarations: System.Collections.Generic.List<System.Reflection.PropertyInfo> list = System.Collections.G...

C# version of mp4parser

I am looking to parse mp4 for my .net application. I couldn't find any mp4 parser in .net. Found mp4parser which is in java. Please let me know is there any C# version available? if no, is it possible to use mp4parser with .net? ...