jimmygilles

Results 5 issues of jimmygilles

Hello, I saw a little problem with the following code : ``` C# Int32 a = 5; Int32 b = 2; Int32 c = a / b; ``` In an...

Hello Nikhilk, A problem with event definition. Here is the code ``` c# using System; namespace ScriptLibrary1 { public abstract class Class1 { public abstract event EventHandler MyEvent; public abstract...

Hello, I found a little bug with the compiler. This C# code ``` c# using System; namespace Demo { public class Class1 { private Int32 _myFunction; private void MyFunction() {...

Hello, I found a problem with the "set" of a property. Here is an example (I know this is not a common code but everything is possible) : ``` c#...

When I want to upload a file, I can either use the method `SftpClient.UploadFile` or I can use ``` using (Stream destinationStream = sftpClient.OpenWrite(destinationPath)) { byte[] buffer = new byte[10...

performance