Cloning an object is much faster in performance
Cloning an object in C# is much faster and light weight than creating a new object. In an IP Camera...
Cloning an object in C# is much faster and light weight than creating a new object. In an IP Camera...
If you unsure of the number of records in your Database and would like to show them on a form...
You are fetching values from DB and not sure if they have a null value in them. If you directly...
Selected Text string SelectedText = Convert.ToString((DataGridView1.Rows.Cells as DataGridViewComboBoxCell).FormattedValue.ToString()); Selected Value int SelectedVal = Convert.ToInt32(DataGridView1.Rows.Cells.Value);
Mono for android solution. Tested on android v2.3 protected override void OnCreate(Bundle bundle) { base.OnCreate(bundle); // Create your application here...
Password Encryption using MD5 Hash FormsAuthentication.HashPasswordForStoringInConfigFile(myPassword, "md5");
For splitting a string use Split on strings like string url = "http://www.memorypointer.com"; string tokens = url.split('.'); tokens will output...
Developed a class for reading CSV to Datatable in C#. Posting it on memorypointer.com so someone could find it useful...
I was working with creating a job using the SalesForce Bulk API and i needed to get the JobId from...