Click here to Skip to main content
15,885,868 members

Comments by charles henington (Top 200 by date)

charles henington 5-Apr-24 12:36pm View    
Glad it helps!! It may also be worth mentioning that you can now inherit from the Character class! An example of a class derived from the Character class. public sealed class RegisteredTrademark : Character { public RegisteredTrademark(){value = '®';} }
charles henington 4-Apr-24 23:23pm View    
Updated. Hope that helps.
charles henington 1-Apr-24 12:05pm View    
The @ sign just allows you to use a reserved keyword as a variable name, no different than _char. The implicit operators allow you to use the Character class as if it implements char and will represent the value held in the value field. You can read more on implicit and explicit operators at https://learn.microsoft.com/en-us/dotnet/csharp/language-reference/operators/user-defined-conversion-operators
charles henington 13-Feb-24 17:29pm View    
From my understanding the process being called has to have a graphical interface, running ffmpeg returns a empty string as well because it has no graphical interface.
charles henington 13-Feb-24 17:26pm View    
+5 To add to that, the process that is being called has to have a graphical interface as well which is why I'm assumming that it cannot be started directly?