示例#1
0
文件: A.cs 项目: mykalamos/Spikes
        public int GetNextId()
        {
            int i = 0;
            int j;

            MyB.MutateOperands(ref i, out j);
            return(i);
        }
示例#2
0
文件: A.cs 项目: mykalamos/Spikes
        public bool IsAuthenticated(string userName)
        {
            var emailAddress = MyB.GetEmailAddress(new UserCredentials(userName));

            return(emailAddress != null);
        }
示例#3
0
文件: A.cs 项目: mykalamos/Spikes
 public (IB, IC, ID) GetDependencies()
 {
     Console.WriteLine(ToString());
     return(MyB, MyB.GetC(), MyB.GetD());
 }