C# – Arrays

  • Post author:
  • Post category:C#
  • Post comments:1 Comment

C# Arrays stores a fixed-size sequential collection of elements of the same type. Instead of declaring individual variables, such as number0, number1, ..., and number99, you declare one array variable…

Continue ReadingC# – Arrays

VBA – Filter Function

  • Post author:
  • Post category:VBA
  • Post comments:0 Comments

A Filter Function, which returns a zero-based array that contains a subset of a string array based on a specific filter criteria. Syntax Filter(inputstrings,value[,include[,compare]]) Parameter Description Inputstrings − A required parameter.…

Continue ReadingVBA – Filter Function