Clounce.comClounce.com

An innovative view into technology

  • Privacy & Cookies
  • Who is Clounce?

Categories

  • .NET (23)
  • Arduino (2)
  • Chemoinformatics (4)
    • Similarity (2)
    • Virtual Screening (1)
  • Cloud (19)
    • AWS (1)
    • Azure (13)
    • Power Platform (3)
  • Electronics (5)
  • Elgg (2)
  • Flutter (1)
  • Magento (13)
    • Magento 2 (5)
  • Mathematics (11)
  • Microscopy (1)
  • MS SQL (4)
  • Office (6)
    • Excel (5)
  • Other (12)
  • Powershell (9)
  • Python (3)
  • Quantum Computing (1)
  • R Language (3)
  • Raspberry Pi (1)
  • Sitecore (4)

Author: Karlston D'Emanuele

Named Parameters

April 12, 2010 by Karlston D'Emanuele·0 Comments

Named parameters are a handy tool to deal with parameters especially for readability as each parameter value can be marked with the parameter tag. The concept of Named parameters has been in .NET from the first version; however they were used only with Attributes as part of the ECMA-334 specifications. In .NET 4.0 the concept … Continue reading Named Parameters

Working with WMI classes

March 15, 2010 by Karlston D'Emanuele·0 Comments

One way of obtaining management data and operation related to the Windows operating system is to use the Windows Management Instrumentation (WMI) classes. WMI can be considered as a database while the classes are like tables in the database. Therefore WMI can be queried to obtain specific table/class information. To use WMI classes in .NET … Continue reading Working with WMI classes

Using ToString() on the same item multiple times

March 1, 2010 by Karlston D'Emanuele·0 Comments

In article String concatenation and int indirect cast it was shown how the ToString() can be used to improve the performance of a program by eliminating the need for the boxing concept. However, the ToString() can still hinder the performance especially when used multiple times to convert a data type or object into a string … Continue reading Using ToString() on the same item multiple times

Shrinking the Log file

February 14, 2010 by Karlston D'Emanuele·0 Comments

MS SQL stores database changes into a log file that as more activity occurs on the database the larger the log file grows. When it comes to disk space limitations and performance this becomes a considerable problem. MS SQL Server provides a command to truncate the log file DBCC SHRINKFILE(<log file>, 0, TRUNCATEONLY) The command … Continue reading Shrinking the Log file

Combining Directory Paths

February 14, 2010 by Karlston D'Emanuele·0 Comments

When working with files it is typically to encounter the need to create a file path from two different strings. The basic way of doing this is to use a conditional statement and string concatenation. However, this is not recommended as it relies on system assumptions, like the directory separator character and that the paths … Continue reading Combining Directory Paths

Posts pagination

1 … 13 14 15
COPYRIGHT © 2010-2018 CLOUNCE.COM. WEB SITE POWERED BY WORDPRESS CMS