IGLib
1.5
The IGLib base library for development of numerical, technical and business applications.
|
General utilities. More...
Static Public Member Functions | |
static bool | MutexCheckAbandoned (Mutex m) |
Check whether the specified mutex has been abandoned, and returns true if it has been (otherwise, false is returned). More... | |
static bool | MutexGlobalCheckAbandoned () |
Check whether the global mutex (property MutexGlobal) has been abandoned, and returns true if it has been (otherwise, false is returned). More... | |
static void | SleepSeconds (double sleepTimeInSeconds) |
Suspends execution of the current thread for the specified time (in seconds). More... | |
static int | GetHashFunctionInt (object obj) |
Returns an integer hash function of the specified object. More... | |
static string | GetHashFunctionString (Object obj) |
Returns a string-valued hash function of the specified object. More... | |
static int | GetIndex (int[] tableDimensions, params int[] indices) |
Returns the index of the element in the onedimensional list that corresponds to the specified indices of the multidimensional table of specified dimensions. More... | |
static void | GetIndices (int[] tableDimensions, int oneDimensionalIndex, ref int[] tableIndices) |
Calculates and stores the multidimensional indices of an element of the multidimensional table of the specified dimensions, which correspond to the specified onedimensional index (index within 1D table containing all elements of the multidimensional table, ordered according to the normal convention - earlier indices run slower). More... | |
static int | GetIndex (List< int > tableDimensions, params int[] indices) |
Returns the index of the element in an onedimensional list that corresponds to the specified indices of the multidimensional table of specified dimensions. More... | |
static void | GetIndices (List< int > tableDimensions, int oneDimensionalIndex, ref int[] tableIndices) |
Calculates and stores the multidimensional indices of an element of the multidimensional table of the specified dimensions, which correspond to the specified onedimensional index (index in the 1D table containing all elements of the multidimensional table, ordered according to the normal convention - earlier indices run slower). More... | |
static void | ResizeList< T > (ref List< T > list, int count, T defaultElement, bool reduceCapacity) |
Allocates or re-allocates (resizes) the specified list in such a way that it contains the specified number of elements after operation. More... | |
static void | ResizeList< T > (ref List< T > list, int count, T defaultElement) |
Allocates or re-allocates (resizes) the specified list in such a way that it contains the specified number of elements after operation. If new size is smaller than the original size of the list then its capacity is not reduced. More... | |
static void | ResizeListRefType< T > (ref List< T > list, int count, bool reduceCapacity) |
Allocates or re-allocates (resizes) the specified list in such a way that it contains the specified number of elements after operation. If list must be enlarged then null elements are inserted to new places. List must contain elements of some reference type! More... | |
static void | ResizeListRefType< T > (ref List< T > list, int count) |
Allocates or re-allocates (resizes) the specified list in such a way that it contains the specified number of elements after operation. If list must be enlarged then null elements are inserted to new places. List must contain elements of some reference type! More... | |
static void | CopyList< T > (List< T > original, ref List< T > target) |
Copies all elements of the specified list to a target list. After operation, target list contains all elements of the source list (only references are copied for objects) in the same order. If the original list is null then target list can either be allocated (if it was allocated before the call) or not. Target list is allocated or re-allocated as necessary. More... | |
static void | CopyList< T > (List< T > original, ref T[] target) |
Copies all elements of the specified list to a target table. After operation, target table contains all elements of the source list (only references are copied for objects) in the same order. If the original list is null then target table will also become null. Target table is allocated or re-allocated as necessary. More... | |
static bool | IsListSorted< T > (List< T > list, IComparer< T > comparer) |
Checks whether the specified list is sorted according to the specified comparer, and returns true if the list is sorted and false if it is not. More... | |
static void | InsertSortedList< T > (List< T > sortedList, T insertedElement, IComparer< T > comparer) |
Inserts the specified element to the appropriate position in a sorted list, in such a way that the list remains sorted. More... | |
static void | InsertSortedListUnique< T > (List< T > sortedList, T insertedElement, IComparer< T > comparer) |
Inserts the specified element to the appropriate position in a sorted list, in such a way that the list remains and no duplicates are inserted. More... | |
static bool | IsListSorted< T > (List< T > list, Comparison< T > comparison) |
Checks whether the specified list is sorted according to the specified comparison function, and returns true if the list is sorted and false if it is not. More... | |
static int | BinarySearchSortedListFromTo< T > (List< T > sortedList, T searchedElement, int from, int to, Comparison< T > comparison) |
Searches a sorted list in the specified range for the specified element, and returns its index if the element is found, or a negative complement of the index before the first element that is greater than the specified element (or binary complement of one greater than the last index if no element is greater). More... | |
static int | BinarySearchSortedList< T > (List< T > sortedList, T searchedElement, Comparison< T > comparison) |
Searches a sorted list for the specified element, and returns its index if the element is found, or a negative complement of the index before the first element that is greater than the specified element (or binsry complement of number of elements if no element is greater). More... | |
static void | InsertSortedList< T > (List< T > sortedList, T insertedElement, Comparison< T > comparison) |
Inserts the specified element to the appropriate position in a sorted list, in such a way that the list remains sorted. More... | |
static void | InsertSortedListUnique< T > (List< T > sortedList, T insertedElement, Comparison< T > comparison) |
Inserts the specified element to the appropriate position in a sorted list, in such a way that the list remains and no duplicates are inserted. More... | |
static string | CollectionToString (System.Collections.ICollection list, bool addNewlines, int numIndent) |
Returns a string representing the specified collection of objects. Each object is printeed by its ToString() method. Works on all collections, including lists and arrays. More... | |
static string | CollectionToString (System.Collections.ICollection list) |
Returns a string representing the specified collection of objects. Each object is printeed by its ToString() method. A newline and two spaces are added before each element printed. Works on all collections, including lists and arrays. More... | |
static string | CollectionToStringLong (System.Collections.ICollection collection, bool addNewlines, int numIndent) |
Returns a string representing the specified list in long form. Count property (i.e. number of elements in collection) is also printed. Works on all collections, including lists and arrays. More... | |
static string | CollectionToStringLong (System.Collections.ICollection collection) |
Returns a string representing the specified list in long form. Count property (i.e. number of elements in collection) is also printed. Works on all collections, including lists and arrays. A newline and two spaces are added before each element printed. More... | |
static string | ListToString< T > (List< T > list, bool addNewlines, int numIndent) |
Returns a string representing the specified generic list in short form (without count and capacity). More... | |
static string | ListToString< T > (List< T > list) |
Returns a string representing the specified generic list in long form. Count and Capacity properties are also printed. A newline and two spaces are added before each element printed. More... | |
static string | ListToStringLong< T > (List< T > list, bool addNewlines, int numIndent) |
Returns a string representing the specified generic list in long form. Count and Capacity properties are also printed. More... | |
static string | ListToStringLong< T > (List< T > list) |
Returns a string representing the specified generic list in long form. Count and Capacity properties are also printed. A newline and two spaces are added before each element printed. More... | |
static string | ToString< ObjectType > (ObjectType obj) |
Converts obect of the specified type to its string representation, where numbers are converted in ivariant culture (ignoring any localization settings). More... | |
static string | ToString< ObjectType > (ObjectType obj, System.Globalization.CultureInfo cultureInfo) |
Converts obect of the specified type to its string representation, where numbers are converted in ivariant culture (ignoring any localization settings). More... | |
static bool | IsNumeric< ObjectType > (ObjectType obj) |
Returns a flag indicating whether the specified object is of numeric type (such as int, float, double, etc.). More... | |
static void | TestToString () |
Test conversion to strings with invariant culture info. More... | |
static bool | TryParse< ReturnType > (string strValue, ref ReturnType parsedValue) |
Tries to parse a string representation of an object of the specified type and return it through output argument. Invariant culture is used in parsing. More... | |
static ReturnType | Parse< ReturnType > (string strValue) |
Converts a string to the object of the specified type and returns the entity, by using the invariant culture. More... | |
static object | Parse (string strValue, Type propertyType) |
Converts a string to the entity of the specified type and returns that entity, by using invariant culture. More... | |
static bool | TryParse< ReturnType > (string strValue, ref ReturnType parsedValue, System.Globalization.CultureInfo cultureInfo) |
Tries to parse a string representation of an object of the specified type and return it through output argument. More... | |
static ReturnType | Parse< ReturnType > (string strValue, System.Globalization.CultureInfo cultureInfo) |
Converts a string to the object of the specified type and returns the entity, by using the specified culture info. More... | |
static object | Parse (string strValue, Type propertyType, System.Globalization.CultureInfo cultureInfo) |
Converts a string to the entity of the specified type and returns that entity. More... | |
static bool | TryParseBoolean (string str, ref bool parsedValue) |
Tries to parse a string representation of a boolean. More... | |
static bool | ParseBoolean (string str) |
Converts the specified string to a boolean value, if possible, and returns it. If conversion is not possible then exception is thrown. Recognized representations of true: "true", "1", "yes", "y" (case insensitive). Recognized representations of false: "false", "0", "no", "n" (case insensitive). More... | |
static bool | TryParseThreadPriority (string str, ref ThreadPriority parsedValue) |
Tries to parse a string representation of a ThreadPriority enum. More... | |
static ThreadPriority | ParseThreadPriority (string str) |
Converts the specified string to a ThreadPriority enum value, if possible, and returns it. If conversion is not possible then exception is thrown. More... | |
static void | ExampleList () |
Public Attributes | |
const string | MutexGlobalName = "Global\\IG.Lib.Utils.MutexGlobal.R2D2_by_Igor_Gresovnik" |
Name of the global mutex. More... | |
const string | NullRepresentationString = "null" |
Standard string representation of null values of objects (often used when overriding object.ToString method). More... | |
const string | IGLibUrl = "http://www2.arnes.si/~ljc3m2/igor/iglib/" |
const string | IGLibCodeDocumentationUrl = "http://www2.arnes.si/~fgreso/code_documentation/generated/iglib/html/index.html" |
const string | IGLibAuthor = "Igor Grešovnik" |
Static Protected Member Functions | |
static bool | IsNumericOld (object expression) |
Returns true if the specified expression or object is of numeric type (such as int, float, double, etc.), and false otherwise. More... | |
Static Protected Attributes | |
static volatile Mutex | _mutexGlobal |
Properties | |
static object | LockGlobal [get] |
Global, process-level locking object. More... | |
static Mutex | MutexGlobal [get] |
Mutex for system-wide exclusive locks. More... | |
static int | OutputLevel [get, set] |
Serves as default output level for new objects of many classes that include the output level property (usually named "OutputLevel"). Such a property defines how much information about operation of the object is ouput to the console. More... | |
Static Private Attributes | |
static object | _lockGlobal = new object() |
static volatile int | _outputLevel = 0 |
static volatile int | _maxLengthIntToString |
General utilities.
$A Igor Apr10;
|
inlinestatic |
Check whether the specified mutex has been abandoned, and returns true if it has been (otherwise, false is returned).
After the call, mutex is no longer in abandoned state (WaitOne() will not throw an exception) if it has been before the call.
Call does not block.
m | Mutex that is checked, must not be null. |
Referenced by IG.Num.OptFileManager.LockFileMutexCheckAbandoned().
|
inlinestatic |
Check whether the global mutex (property MutexGlobal) has been abandoned, and returns true if it has been (otherwise, false is returned).
After the call, mutex is no longer in abandoned state (WaitOne() will not throw an exception) if it has been before the call.
Call does not block.
|
inlinestatic |
Suspends execution of the current thread for the specified time (in seconds).
sleepTimeInSeconds | Sleeping time in seconds. If less than 0 then thread sleeps indefinitely. |
Referenced by IG.Forms.ScalarFunctionEvaluatorControl.dGridInputParam_CellValueChanged(), IG.Lib.StopWatch.Example(), and IG.Gr3d.Graph3dManipulator.UpdateTextFields().
|
inlinestatic |
Returns an integer hash function of the specified object.
Returned integer is always positive.
This hash function is bound to the object.ToString method of the specified object, which means that it returns the same value for any two objects that have the same string representation.
obj | Object whose hash function is returned. |
This hash function is calculated in such a way that object.ToString() is called first on obj in order to obtain object's string representation (or, if the object is null, the Util.NullRepresentationString is taken), and then the string.GetHashCode is called on the obtained string and its value returned.
References IG.Lib.Util.NullRepresentationString.
Referenced by IG.Num.MatrixBase.GetHashFunctionInt(), and IG.Num.VectorBase.GetHashFunctionInt().
|
inlinestatic |
Returns a string-valued hash function of the specified object.
This hash function is bound to the object.ToString method of the specified object, which means that it returns the same value for any two objects that have the same string representation.
obj | Object whose string-valued hash function is returned. |
This hash function is calculated in such a way that object.ToString() is called first on obj in order to obtain object's string representation (or, if the object is null, the Util.NullRepresentationString is taken), and then the string.GetHashCode is called on the obtained string and its value returned.
Referenced by IG.Num.MatrixBase.GetHashFunctionString(), and IG.Num.VectorBase.GetHashFunctionString().
|
inlinestatic |
Returns the index of the element in the onedimensional list that corresponds to the specified indices of the multidimensional table of specified dimensions.
indices | Indices of the element in the multidimensional table of training results. |
tableDimensions | Dimensions of the multidimensional table. |
Referenced by IG.Num.NeuralTrainingTable.GetIndex().
|
inlinestatic |
Calculates and stores the multidimensional indices of an element of the multidimensional table of the specified dimensions, which correspond to the specified onedimensional index (index within 1D table containing all elements of the multidimensional table, ordered according to the normal convention - earlier indices run slower).
tableDimensions | Dimensions of the multidimensional table. |
oneDimensionalIndex | One dimensional index that defines the position of the element in the list of elements. |
tableIndices | Variable where multidimensional indices of the element are stored. |
Referenced by IG.Num.NeuralTrainingTable.GetIndices().
|
inlinestatic |
Returns the index of the element in an onedimensional list that corresponds to the specified indices of the multidimensional table of specified dimensions.
indices | Indices of the element in the multidimensional table of training results. |
tableDimensions | Dimensions of the multidimensional table. |
|
inlinestatic |
Calculates and stores the multidimensional indices of an element of the multidimensional table of the specified dimensions, which correspond to the specified onedimensional index (index in the 1D table containing all elements of the multidimensional table, ordered according to the normal convention - earlier indices run slower).
tableDimensions | Dimensions of the multidimensional table. |
oneDimensionalIndex | One dimensional index that defines the position of the element in the list of elements. |
tableIndices | Variable where multidimensional indices of the element are stored. |
|
inlinestatic |
Allocates or re-allocates (resizes) the specified list in such a way that it contains the specified number of elements after operation.
T | Type of the list element. |
list | List to be allocated. |
count | Number of elements list will contain after operation. |
defaultElement | Elements to be added to the list if there are currently too few elements. |
reduceCapacity | If true then capacity is reduced if the current list's capacity exceeds the specified number of elements. |
$A Igor Apr10;
|
inlinestatic |
Allocates or re-allocates (resizes) the specified list in such a way that it contains the specified number of elements after operation. If new size is smaller than the original size of the list then its capacity is not reduced.
T | Type of the list element. |
list | List to be allocated. |
count | Number of elements list will contain after operation. |
defaultElement | Elements to be added to the list if there are currently too few elements. |
$A Igor Apr10;
|
inlinestatic |
Allocates or re-allocates (resizes) the specified list in such a way that it contains the specified number of elements after operation. If list must be enlarged then null elements are inserted to new places. List must contain elements of some reference type!
T | Type of the list element, must be a reference type. |
list | List to be allocated. |
count | Number of elements list will contain after operation. |
reduceCapacity | If true then capacity is reduced if the current list's capacity exceeds the specified number of elements. |
$A Igor Apr10;
T | : | class |
|
inlinestatic |
Allocates or re-allocates (resizes) the specified list in such a way that it contains the specified number of elements after operation. If list must be enlarged then null elements are inserted to new places. List must contain elements of some reference type!
T | Type of the list element, must be a reference type. |
list | List to be allocated. |
count | Number of elements list will contain after operation. |
capacity exceeds the specified number of elements.
$A Igor Apr10;
T | : | class |
|
inlinestatic |
Copies all elements of the specified list to a target list. After operation, target list contains all elements of the source list (only references are copied for objects) in the same order. If the original list is null then target list can either be allocated (if it was allocated before the call) or not. Target list is allocated or re-allocated as necessary.
T | Type of elements contained in the list. |
original | Original list. |
target | List that elements of the original list are copied to. |
|
inlinestatic |
Copies all elements of the specified list to a target table. After operation, target table contains all elements of the source list (only references are copied for objects) in the same order. If the original list is null then target table will also become null. Target table is allocated or re-allocated as necessary.
T | Type of elements contained in the list. |
original | Original list. |
target | Table that elements of the original list are copied to. |
|
inlinestatic |
Checks whether the specified list is sorted according to the specified comparer, and returns true if the list is sorted and false if it is not.
T | Type of elements of the list. |
list | List to be checked for sorting. |
comparer | Comparer according to which sorting is verified. |
ArgumentNullException | If list or comparer is null. |
|
inlinestatic |
Inserts the specified element to the appropriate position in a sorted list, in such a way that the list remains sorted.
Duplicate elements are allowed.
T | Type of elements of the list. |
sortedList | Sorted list. |
insertedElement | Element to be inserted. |
comparer | Comparer according to which the list is sorted. |
ArgumentNullException | If list or comparer is null. |
|
inlinestatic |
Inserts the specified element to the appropriate position in a sorted list, in such a way that the list remains and no duplicates are inserted.
If the list already contains the element that is equal (in the sense of comparer) than the inserted element then this method has no effect.
T | Type of elements of the list. |
sortedList | Sorted list. |
insertedElement | Element to be inserted. |
comparer | Comparer according to which the list is sorted. |
ArgumentNullException | If list or comparer is null. |
|
inlinestatic |
Checks whether the specified list is sorted according to the specified comparison function, and returns true if the list is sorted and false if it is not.
T | Type of elements of the list. |
list | List to be checked for sorting. |
comparison | Comparison method (delegate) according to which sorting is verified. |
ArgumentNullException | If list or comparer is null. |
|
inlinestatic |
Searches a sorted list in the specified range for the specified element, and returns its index if the element is found, or a negative complement of the index before the first element that is greater than the specified element (or binary complement of one greater than the last index if no element is greater).
T | Type of list elements. |
sortedList | List that is searched for the element. List must be sorted according to the specified comparison function. |
searchedElement | Element that is searched for. |
from | Index of the first element in the searched range. |
to | Index of the last element in the searched range. |
comparison | Comparison function (delegate) according to which the list is sorted. |
ArgumentNullException | When list or comparison delegate is null. |
|
inlinestatic |
Searches a sorted list for the specified element, and returns its index if the element is found, or a negative complement of the index before the first element that is greater than the specified element (or binsry complement of number of elements if no element is greater).
T | Type of list elements. |
sortedList | List that is searched for the element. List must be sorted according to the specified comparison function. |
searchedElement | Element that is searched for. |
from | Index of the first element in the searched range. |
to | Index of the last element in the searched range. |
comparison | Comparison function (delegate) according to which the list is sorted. |
ArgumentNullException | When list or comparison delegate is null. |
|
inlinestatic |
Inserts the specified element to the appropriate position in a sorted list, in such a way that the list remains sorted.
Duplicate elements are allowed.
T | Type of elements of the list. |
sortedList | Sorted list. |
insertedElement | Element to be inserted. |
comparison | Comparison function (delegate) according to which the list is sorted. |
ArgumentNullException | If list or comparer is null. |
|
inlinestatic |
Inserts the specified element to the appropriate position in a sorted list, in such a way that the list remains and no duplicates are inserted.
If the list already contains the element that is equal (in the sense of comparer) than the inserted element then this method has no effect.
T | Type of elements of the list. |
sortedList | Sorted list. |
insertedElement | Element to be inserted. |
comparison | Comparison function (delegate) according to which the list is sorted. |
ArgumentNullException | If list or comparer is null. |
|
inlinestatic |
Returns a string representing the specified collection of objects. Each object is printeed by its ToString() method. Works on all collections, including lists and arrays.
list | Collection to be converted to srting. |
addNewlines | If true then a newline is added before each element printed. |
numIndent | Number of spaces aded before each element. |
Referenced by IG.Lib.RegisterableExamples.ExampleIdGenerator(), and IG.Lib.RegisterableExamples.ExampleRegistrable().
|
inlinestatic |
Returns a string representing the specified collection of objects. Each object is printeed by its ToString() method. A newline and two spaces are added before each element printed. Works on all collections, including lists and arrays.
list | Collection to be converted to srting. |
|
inlinestatic |
Returns a string representing the specified list in long form. Count property (i.e. number of elements in collection) is also printed. Works on all collections, including lists and arrays.
T | Type of list elements. |
list | List to be converted to srting. |
addNewlines | If true then a newline is added before each element printed. |
numIndent | Number of spaces aded before each element. |
|
inlinestatic |
Returns a string representing the specified list in long form. Count property (i.e. number of elements in collection) is also printed. Works on all collections, including lists and arrays. A newline and two spaces are added before each element printed.
T | Type of list elements. |
list | List to be converted to srting. |
|
inlinestatic |
Returns a string representing the specified generic list in short form (without count and capacity).
T | Type of list elements. |
list | List to be converted to srting. |
addNewlines | If true then a newline is added before each element printed. |
numIndent | Number of spaces aded before each element. |
|
inlinestatic |
Returns a string representing the specified generic list in long form. Count and Capacity properties are also printed. A newline and two spaces are added before each element printed.
T | Type of list elements. |
list | List to be converted to srting. |
|
inlinestatic |
Returns a string representing the specified generic list in long form. Count and Capacity properties are also printed.
T | Type of list elements. |
list | List to be converted to srting. |
addNewlines | If true then a newline is added before each element printed. |
numIndent | Number of spaces aded before each element. |
|
inlinestatic |
Returns a string representing the specified generic list in long form. Count and Capacity properties are also printed. A newline and two spaces are added before each element printed.
T | Type of list elements. |
list | List to be converted to srting. |
|
inlinestatic |
Converts obect of the specified type to its string representation, where numbers are converted in ivariant culture (ignoring any localization settings).
This method can be used to avoid problems with differen local settinggs when transfering numerical values through text files.
ObjectType | Type of the object to be converted to string. |
obj | Object to be converted. |
|
inlinestatic |
Converts obect of the specified type to its string representation, where numbers are converted in ivariant culture (ignoring any localization settings).
This method can be used to avoid problems with differen local settinggs when transfering numerical values through text files.
ObjectType | Type of the object to be converted to string. |
obj | Object to be converted. |
cultureInfo | Culture info used in conversion. |
|
inlinestatic |
Returns a flag indicating whether the specified object is of numeric type (such as int, float, double, etc.).
When called on an arbitrary object, the correct type parameter will be inferred, and we can get the desired information if
ObjectType | Type of the object that is queried. |
obj | Object for which we query whether it represents a numerical value. |
|
inlinestaticprotected |
Returns true if the specified expression or object is of numeric type (such as int, float, double, etc.), and false otherwise.
expression | Expression that is checked for being of numeric type. |
|
inlinestatic |
Test conversion to strings with invariant culture info.
|
inlinestatic |
Tries to parse a string representation of an object of the specified type and return it through output argument. Invariant culture is used in parsing.
ReturnType | Type of the object whose value is tried to be parsed from the string. |
strValue | String that is converted to obect of the specified type. |
parsedValue | Value (of the specified type)vthat is obtained from the parsed string. |
|
inlinestatic |
Converts a string to the object of the specified type and returns the entity, by using the invariant culture.
This works for simple types, for complex types deserialization must be used.
ReturnType | Type of the entity to be returned, can be int. |
strValue | String to be converted to other type. |
|
inlinestatic |
Converts a string to the entity of the specified type and returns that entity, by using invariant culture.
This works for simple types, for complex types deserialization must be used.
strValue | String to be converted to other type. |
propertyType | Type of the entity to be parsed from a string. |
cultureInfo | Culture info used in conversion. |
Referenced by IG.Lib.StringTable.GetElement< ElementType >().
|
inlinestatic |
Tries to parse a string representation of an object of the specified type and return it through output argument.
ReturnType | Type of the object whose value is tried to be parsed from the string. |
strValue | String that is converted to obect of the specified type. |
parsedValue | Value (of the specified type)vthat is obtained from the parsed string. |
cultureInfo | Culture info used in conversion. |
|
inlinestatic |
Converts a string to the object of the specified type and returns the entity, by using the specified culture info.
This works for simple types, for complex types deserialization must be used.
ReturnType | Type of the entity to be returned, can be int. |
strValue | String to be converted to other type. |
cultureInfo | Culture info used in conversion. |
|
inlinestatic |
Converts a string to the entity of the specified type and returns that entity.
This works for simple types, for complex types deserialization must be used.
strValue | String to be converted to other type. |
propertyType | Type of the entity to be parsed from a string. |
cultureInfo | Culture info used in conversion. |
|
inlinestatic |
Tries to parse a string representation of a boolean.
str | String that is converted to boolean. |
parsedValue | Boolean value parsed from the specified string. |
Referenced by IG.Lib.CommandLineApplicationInterpreter.CmdAbout(), IG.Lib.CommandLineApplicationInterpreter.CmdApplicationInfo(), IG.Lib.CommandLineApplicationInterpreter.CmdPipeClientCreate(), IG.Lib.CommandLineApplicationInterpreter.CmdPipeServerCreate(), IG.Lib.CommandLineApplicationInterpreter.CmdPrintParallelCommands(), IG.Lib.CommandLineApplicationInterpreter.CmdThtrowExceptions(), and IG.Gr3d.VtkFormsExamples.Plot3dFunctionVtkControl().
|
inlinestatic |
Converts the specified string to a boolean value, if possible, and returns it. If conversion is not possible then exception is thrown. Recognized representations of true: "true", "1", "yes", "y" (case insensitive). Recognized representations of false: "false", "0", "no", "n" (case insensitive).
str | String representation of boolean to beparsed. |
System.ArgumentNullException | When the string is null. |
System.FormatException | When the string can not represent a boolean value. |
Referenced by IG.Script.ScriptAppBase.DataStructuresFunctionTestCsvReadDefinitionAndData(), IG.Script.ScriptAppBase.DataStructuresFunctionTestCsvWriteDefinitionAndData(), IG.Script.ScriptAppBase.FileFunctionWaitCreation(), IG.Script.ScriptAppBase.ProcessFunctionKillApplications(), IG.Script.ScriptAppBase.ProcessFunctionKillApplicationsByWindow(), IG.Script.ScriptAppBase.ProcessFunctionKillProcesses(), IG.Script.ScriptAppBase.ProcessFunctionListApplications(), IG.Script.ScriptAppBase.ProcessFunctionListApplicationsByWindow(), and IG.Script.ScriptAppBase.ProcessFunctionListProcesses().
|
inlinestatic |
Tries to parse a string representation of a ThreadPriority enum.
str | String that is converted to a ThreadPriority value. |
parsedValue | Boolean value parsed from the specified string. |
Referenced by IG.Lib.CommandLineApplicationInterpreter.CmdSetPriority().
|
inlinestatic |
Converts the specified string to a ThreadPriority enum value, if possible, and returns it. If conversion is not possible then exception is thrown.
Recognized representations (not case sensitive):
ThreadPriority.Lowest: "0", "lowest", "idle"
ThreadPriority.BelowNormal: "1", "belownormal", "low"
ThreadPriority.Normal: "2", "normal"
ThreadPriority.AboveNormal: "3", "abovenormal", "high"
ThreadPriority.: "4", "Highest", "realtime"
str | String representation of a ThreadPriority value to be parsed. |
System.ArgumentNullException | When the string is null. |
System.FormatException | When the string can not represent a boolean value. |
|
inlinestatic |
|
staticprivate |
const string IG.Lib.Util.MutexGlobalName = "Global\\IG.Lib.Utils.MutexGlobal.R2D2_by_Igor_Gresovnik" |
Name of the global mutex.
|
staticprotected |
|
staticprivate |
const string IG.Lib.Util.NullRepresentationString = "null" |
Standard string representation of null values of objects (often used when overriding object.ToString method).
Referenced by IG.Lib.Util.GetHashFunctionInt(), IG.Num.VectorBase.ToString(), and IG.Num.MatrixBase.ToStringReadable().
|
staticprivate |
const string IG.Lib.Util.IGLibUrl = "http://www2.arnes.si/~ljc3m2/igor/iglib/" |
Referenced by IG.Forms.BrowserSimpleControl.MenuHelp_About_Click().
const string IG.Lib.Util.IGLibCodeDocumentationUrl = "http://www2.arnes.si/~fgreso/code_documentation/generated/iglib/html/index.html" |
const string IG.Lib.Util.IGLibAuthor = "Igor Grešovnik" |
|
staticget |
Global, process-level locking object.
This object can be used for synchronization of any static methods.
Warning: Do not use this lock for locking long lasting operations, since this can result in deadlocks.
Referenced by IG.Lib.ScriptLoaderBase.AddDefaultAssemblies(), IG.Lib.UtilSystem.AddOnThreadPriorityChange(), IG.Lib.ScriptLoaderBase.ClearDefaultAssemblies(), IG.Lib.UtilSystem.DetectOs(), IG.Lib.UtilSystem.GetMissingAssemblies(), IG.Forms.TestControl.GetNextId(), IG.Lib.UtilSystem.GetReferencedAssemblies(), IG.Lib.UtilSystem.GetReferencedAssembliesFlat(), IG.Lib.UtilSystem.GetReferencedAssembliesRecursive(), IG.Lib.UtilSystem.GetReferencedAssembliesRecursiveWithoutGac(), IG.Lib.UtilSystem.GetReferencedAssembliesWithoutGac(), IG.Lib.UtilSystem.InternalGetReferencedAssembliesRecursive(), IG.Lib.UtilSystem.OnThreadPriorityChange(), IG.Lib.ScriptLoaderBase.RemoveDefaultAssemblies(), IG.Lib.UtilSystem.RemoveOnThreadPriorityChange(), and IG.Lib.UtilSystem.UpdateThreadPriorityFromProcess().
|
staticget |
Mutex for system-wide exclusive locks.
|
staticgetset |
Serves as default output level for new objects of many classes that include the output level property (usually named "OutputLevel"). Such a property defines how much information about operation of the object is ouput to the console.
General guidlines for use of the output level property in classes:
The property usually defineds the quantity of output produced by an object of a class that implements this property. It is not strictly prescribed what certain values of the property mean. By loose agreement, any negative value means unspecified output level (property not yet initialized), 0 means that no output is produced, 1 means only the most important information is ouptut and higher values mean that more detailed information about operation is output to the console.
For example application, see e.g. the IG.Gr.PlotterZedGraph in the 2D plotting library that uses IGLib.
Referenced by IG.Lib.ShellApplication< InterpreterType >.AplicationMain(), IG.Lib.UtilSystem.CopyDirectorySafe(), IG.Lib.UtilSystem.CopyRecursive(), IG.Lib.UtilSystem.CopyRecursiveSafe(), IG.Lib.UtilSystem.ExampleCopyDir(), IG.Lib.UtilSystem.GetMacAddressFastest(), IG.Lib.UtilSystem.KillAllApplications(), IG.Lib.UtilSystem.KillAllApplicationsByWindowTitle(), IG.Lib.UtilSystem.KillAllProcesses(), IG.Lib.UtilSystem.KillFirstApplication(), IG.Lib.UtilSystem.KillFirstApplicationByWindowTitle(), and IG.Lib.UtilSystem.KillFirstProcess().