Showing posts with label Csharp. Show all posts
Showing posts with label Csharp. Show all posts

Saturday, 19 September 2015

Why String Are Value Types Csharp Dotnet

The distinction between reference types and value types are basically a performance tradeoff in the design of the language. Reference types have some overhead on construction and destruction and garbage collection, because they are created on the heap. Value types on the other hand have overhead on method calls , because the whole object is copied rather than just a pointer. Because...

Friday, 2 January 2015

Nopcommerce Developer Guide

Internship - Day 1 Today was first day of my internship Period of 6 months . I am very happy to start my internship with Abax Technologies . Abax technologies is a recognized IT company Situated in Noida . It deals with Desktop , web and Mobile application development and providing solutions to market . Mr. Rohit Jain is CEO of Company and I am doing Internship under their...

Tuesday, 23 December 2014

Pass Data between Activity in Android

Hello Friends , Today I got one message from a person to tell him how to pass data between android activities So, I am going to give a simple way for how we can transfer data or how we can pass data across activities in android . In android we use activity for  each layout...

Saturday, 4 October 2014

\adt-bundle-windows-x86_64-20130219\sdk\platform-tools\aapt.exe is invalid

When your are using Android with Csharp or when you are using Monoandroid you will be facing some some error related to aapt.exe missing or aapt.exe invalid . These are common error to Monoandroid developer that almost every one that uses Monoandroid will face . So Today I decided to get the actual reason of this problem and I sit on my chair to find out the reason and possible...

Wednesday, 20 August 2014

save to google drive button javascript code

This is a simple javascript code to upload file from your computer to google drive using google drive api <!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head id="Head1" runat="server">     <title></title> </head> <body>     <form id="form1" runat="server">    <script src='https://apis.google.com/js/platform.js'></script> <div...

Sunday, 3 August 2014

Mixed mode assembly is built against version 'v2.0.50727' of the runtime

Error :- Mixed mode assembly is built against version 'v2.0.50727' of the runtime and cannot be loaded in the 4.0 runtime without additional configuration information Error Explanation - During using Sqlite Database with Csharp Applications you may suffer from this error Don't...