Shovel.Vm.Vm.GetUdpByName C# (CSharp) Метод

GetUdpByName() статический приватный Метод

static private GetUdpByName ( Vm vm, string udpName ) : Callable
vm Vm
udpName string
Результат Callable
        static Callable GetUdpByName(Vm vm, string udpName)
        {
            if (vm.userPrimitives == null || !vm.userPrimitives.ContainsKey (udpName)) {
                vm.RaiseShovelError (String.Format (
                        "Unknown user primitive '{0}'.", udpName)
                );
            }
            return vm.userPrimitives [udpName];
        }
Vm