Horje
loop over object properties c# Code Example
loop over object properties c#
foreach (PropertyInfo prop in someObject.GetType().GetProperties())
{
    Console.WriteLine($"{prop.Name}: {prop.GetValue(someObject, null)}");
}




Csharp

Related
c# mark as deprecated Code Example c# mark as deprecated Code Example
unity desactivate collider Code Example unity desactivate collider Code Example
unity delete specific text in a string Code Example unity delete specific text in a string Code Example
net core get remote ip Code Example net core get remote ip Code Example
unity rotation between 2 points Code Example unity rotation between 2 points Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
14