您編寫以下代碼以實現(xiàn) CertkillerClass.MyMethod 函數(shù)。 public class CertkillerClass { public int MyMethod(int arg) { return arg; } } 您需要在您的程序集中不相關的類里動態(tài)調用 CertkillerClass.MyMethod 函數(shù)。 您應該使用哪個代碼段?()
A. B. C. D.
您正在編寫一個用于壓縮字節(jié)數(shù)組的方法。將在名為document的參數(shù)中將數(shù)組傳遞到此方法。您需要壓縮傳入的字節(jié)數(shù)組并以字節(jié)數(shù)組的形式返回結果。您應該使用哪個代碼段?()
A.A B.B C.C D.D
You are developing a method to hash data with the Secure Hash Algorithm. The data is passed to your method as a byte array named message.You need to compute the hash of the incoming parameter by using SHA1.You also need to place the result into a byte array named hash. Which code segment should you use?()